We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa79d6 commit aea0717Copy full SHA for aea0717
python/ray/dashboard/modules/job/sdk.py
@@ -501,9 +501,7 @@ async def tail_job_logs(self, job_id: str) -> AsyncIterator[str]:
501
job_info = self.get_job_info(job_id)
502
job_status = job_info.status
503
except Exception as e:
504
- raise RuntimeError(
505
- f"Failed to get job status for {job_id}."
506
- ) from e
+ raise RuntimeError(f"Failed to get job status for {job_id}.") from e
507
508
if msg.type == aiohttp.WSMsgType.TEXT:
509
yield msg.data
0 commit comments