Skip to content

Commit 26802c7

Browse files
committed
.
1 parent 8903c06 commit 26802c7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sentry_sdk/integrations/asyncio.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@ async def async_entrypoint():
182182
# we patch the currently running event loop, and we keep the record of doing
183183
# that on the loop itself.
184184
logger.debug("Setting up integration asyncio")
185+
185186
integration = AsyncioIntegration(*args, **kwargs)
186187
integration.setup_once()
187-
client.integrations["asyncio"] = integration
188+
189+
if "asyncio" not in client.integrations:
190+
client.integrations["asyncio"] = integration

0 commit comments

Comments
 (0)