Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath committed Jun 13, 2024
1 parent 70b1841 commit c26541a
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(id=job_id)
return self.sdk.job.status(job_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 c26541a

Please sign in to comment.