mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-10 23:44:36 +00:00
Fix exception message to include workflow_run_id (#63)
This commit is contained in:
parent
8489be5e25
commit
1e3a9af7dd
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ class UnexpectedTaskStatus(SkyvernException):
|
|||
|
||||
class InvalidWorkflowTaskURLState(SkyvernException):
|
||||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue