From 1e3a9af7dde79eb3a29d1a3595f5b5fe8857f57f Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Thu, 14 Mar 2024 00:00:49 -0700 Subject: [PATCH] Fix exception message to include workflow_run_id (#63) --- skyvern/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/exceptions.py b/skyvern/exceptions.py index e3956d8e..11722ff0 100644 --- a/skyvern/exceptions.py +++ b/skyvern/exceptions.py @@ -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):