Update jobs/python/sdk/job-scheduler/app.py

Co-authored-by: Alice Gibbons <alicejgibbons@gmail.com>
Signed-off-by: Kendall <kendall@diagrid.io>
Signed-off-by: Kendall Roden <kendall@diagrid.io>
This commit is contained in:
Kendall 2025-08-29 10:57:59 -05:00 committed by Kendall Roden
parent 97eab4955f
commit cca09b4507
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def get_job_details(job: DroidJob) -> None:
try:
# Use HTTP client to call the job-service via Dapr
req_url = f"{dapr_host}:{dapr_port}/v1.0/invoke/job-service/method/getJob/{job.name}"
req_url = f"{dapr_host}:{dapr_port}/v1.0/invoke/job-service-sdk/method/getJob/{job.name}"
response = requests.get(req_url)