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 29
29
"debug" : False ,
30
30
}
31
31
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 1
1
from threading import Lock
2
2
3
3
from ..utils import logger
4
+ from ..consts import INTEGRATIONS as _installed_integrations
4
5
5
6
6
7
_installer_lock = Lock ()
7
- _installed_integrations = {}
8
8
9
9
10
10
def _get_default_integrations ():
@@ -50,4 +50,4 @@ def __call__(self):
50
50
return
51
51
52
52
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