We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7696592 commit c45bf2bCopy full SHA for c45bf2b
miss_islington/__main__.py
@@ -7,6 +7,7 @@
7
import cachetools
8
import sentry_sdk
9
from aiohttp import web
10
+from sentry_sdk.integrations.celery import CeleryIntegration
11
from gidgethub import aiohttp as gh_aiohttp
12
from gidgethub import routing, sansio
13
@@ -19,7 +20,7 @@
19
20
cache = cachetools.LRUCache(maxsize=500)
21
22
-sentry_sdk.init(os.environ.get("SENTRY_DSN"))
23
+sentry_sdk.init(os.environ.get("SENTRY_DSN"), integrations=[CeleryIntegration()])
24
25
26
async def main(request):
0 commit comments