Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/blaxel/core/common/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
KeyboardInterrupt, # User interrupt (Ctrl+C)
SystemExit, # Program exit
CancelledError, # Async task cancellation
KeyError, # Normal control flow for dict-like __getitem__
AttributeError, # Normal control flow for hasattr/getattr patterns
)

# Optional dependencies that may not be installed - import errors for these are expected
Expand Down
Loading