Skip to content

Commit

Permalink
tmp: print exception from get_job_metadata
Browse files Browse the repository at this point in the history
This is because the JSON formatted exception is hard to read
  • Loading branch information
jonathansick committed Jan 3, 2024
1 parent 0ad7905 commit afaeebb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/noteburst/handlers/v1/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ async def get_nbexec_job(
try:
job_metadata = await arq_queue.get_job_metadata(job_id)
except Exception as e:
print(e)
logger.error(
"Error getting nbexec job metadata", job_id=job_id, exc_info=e
)
Expand Down

0 comments on commit afaeebb

Please sign in to comment.