We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8903c06 commit 26802c7Copy full SHA for 26802c7
sentry_sdk/integrations/asyncio.py
@@ -182,6 +182,9 @@ async def async_entrypoint():
182
# we patch the currently running event loop, and we keep the record of doing
183
# that on the loop itself.
184
logger.debug("Setting up integration asyncio")
185
+
186
integration = AsyncioIntegration(*args, **kwargs)
187
integration.setup_once()
- client.integrations["asyncio"] = integration
188
189
+ if "asyncio" not in client.integrations:
190
+ client.integrations["asyncio"] = integration
0 commit comments