We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c75646 commit d39f13aCopy full SHA for d39f13a
sentry/__manifest__.py
@@ -17,7 +17,7 @@
17
"installable": True,
18
"external_dependencies": {
19
"python": [
20
- "sentry_sdk<=1.9.0",
+ "sentry_sdk",
21
]
22
},
23
"depends": [
sentry/hooks.py
@@ -142,7 +142,7 @@ def initialize_sentry(config):
142
# Patch the wsgi server in case of further registration
143
odoo.http.Application = SentryWsgiMiddleware(odoo.http.Application)
144
145
- with sentry_sdk.push_scope() as scope:
+ with sentry_sdk.new_scope() as scope:
146
scope.set_extra("debug", False)
147
sentry_sdk.capture_message("Starting Odoo Server", "info")
148
0 commit comments