Skip to content

Commit

Permalink
wip: add print
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansick committed Sep 10, 2024
1 parent 9a2979c commit 37a74fb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/noteburst/handlers/v1/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ async def from_job_metadata(
if job_result and not job_result.success:
try:
# Attempt to access the result to raise any exceptions
print( # noqa: T201
"Attempting to access "
f"job_result.result {job_result.result}"
)
job_result.result # noqa: B018
noteburst_error = None
except NbexecTaskTimeoutError as e:
Expand Down

0 comments on commit 37a74fb

Please sign in to comment.