Browse Source

fix(scim): no space in transaction name (#43295)

Aniket Das 2 years ago
parent
commit
61abadf7c3
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/sentry/scim/endpoints/members.py

+ 3 - 1
src/sentry/scim/endpoints/members.py

@@ -376,7 +376,9 @@ class OrganizationSCIMMemberIndex(SCIMEndpoint):
         - The API also does not support setting secondary emails.
         """
 
-        with sentry_sdk.start_transaction(name="Provision Scim Member", sampled=True) as txn:
+        with sentry_sdk.start_transaction(
+            name="scim.provision_member", op="scim", sampled=True
+        ) as txn:
             if (
                 features.has("organizations:scim-orgmember-roles", organization, actor=None)
                 and "sentryOrgRole" in request.data