Fix exception message to include workflow_run_id (#63)

This commit is contained in:
Kerem Yilmaz 2024-03-14 00:00:49 -07:00 committed by GitHub
parent 8489be5e25
commit 1e3a9af7dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -146,7 +146,7 @@ class UnexpectedTaskStatus(SkyvernException):
class InvalidWorkflowTaskURLState(SkyvernException): class InvalidWorkflowTaskURLState(SkyvernException):
def __init__(self, workflow_run_id: str) -> None: def __init__(self, workflow_run_id: str) -> None:
super().__init__(f"No Valid URL found in the first task") super().__init__(f"No Valid URL found in the first task of workflow run {workflow_run_id}")
class DisabledFeature(SkyvernException): class DisabledFeature(SkyvernException):