mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-17 02:39:40 +00:00
Fix authentication errors (#1527)
This commit is contained in:
parent
dde2d650ff
commit
5ed7e5ad8e
4 changed files with 8 additions and 5 deletions
|
@ -280,7 +280,7 @@ class Block(BaseModel, abc.ABC):
|
|||
if not workflow_run_context.has_value(self.output_parameter.key):
|
||||
await self.record_output_parameter_value(workflow_run_context, workflow_run_id)
|
||||
|
||||
failure_reason = "unexpected exception"
|
||||
failure_reason = f"Unexpected error: {str(e)}"
|
||||
if isinstance(e, SkyvernException):
|
||||
failure_reason = f"unexpected SkyvernException({e.__class__.__name__}): {str(e)}"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue