We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb00d62 commit d664c99Copy full SHA for d664c99
src/sentry/backup/imports.py
@@ -59,11 +59,7 @@
59
# around even if the dict is empty, to ensure that there is a ready place to pop shims into. For
60
# each entry in this dict, please leave a TODO comment pointed to a github issue for removing
61
# the shim, noting in the comment which self-hosted release will trigger the removal.
62
-DELETED_FIELDS: dict[
63
- str, set[str]
64
-] = { # TODO(getsentry/sentry#66247): Remove once self-hosted 24.4.0 is released.
65
- "sentry.team": {"org_role"}
66
-}
+DELETED_FIELDS: dict[str, set[str]] = {}
67
68
69
class ImportingError(Exception):
0 commit comments