Skip to content

Commit

Permalink
job_id to id
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath committed Jun 11, 2024
1 parent d612966 commit 39d1e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anyscale_provider/hooks/anyscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def deploy_service(self, config: ServiceConfig,

def get_job_status(self, job_id: str) -> JobStatus:
self.log.info("Fetching job status for Job name: {}".format(job_id))
return self.sdk.job.status(job_id=job_id)
return self.sdk.job.status(id=job_id)

def get_service_status(self, service_name: str) -> ServiceStatus:
return self.sdk.service.status(name=service_name)
Expand Down

0 comments on commit 39d1e75

Please sign in to comment.