File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2929 "debug" : False ,
3030}
3131
32- SDK_INFO = {"name" : "sentry-python" , "version" : VERSION }
32+
33+ # Modified by sentry_sdk.integrations
34+ INTEGRATIONS = []
35+
36+ SDK_INFO = {
37+ "name" : "sentry.python" ,
38+ "version" : VERSION ,
39+ "packages" : [{"package_name" : "pypi:sentry-sdk" , "version" : VERSION }],
40+ "integrations" : INTEGRATIONS ,
41+ }
Original file line number Diff line number Diff line change 11from threading import Lock
22
33from ..utils import logger
4+ from ..consts import INTEGRATIONS as _installed_integrations
45
56
67_installer_lock = Lock ()
7- _installed_integrations = {}
88
99
1010def _get_default_integrations ():
@@ -50,4 +50,4 @@ def __call__(self):
5050 return
5151
5252 self .install ()
53- _installed_integrations [ self .identifier ] = self
53+ _installed_integrations . append ( self .identifier )
You can’t perform that action at this time.
0 commit comments