Fix exception message to include workflow_run_id (#63)
This commit is contained in:
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user