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: 1 addition & 1 deletion cmk/gui/dashboard/api/token_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def create_dashboard_token_v1(
dashboard["public_token_id"] = token.token_id
try:
save_dashboard_to_file(api_context.config.sites, dashboard, body.dashboard_owner)
except:
except BaseException:
# rollback token creation
token_store.delete(token.token_id)
raise
Expand Down
Loading