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 bca3318 commit 5b386ceCopy full SHA for 5b386ce
src/app.py
@@ -27,7 +27,7 @@ async def webhooks(repo):
27
28
if payload['repository']['name'] == repo and 'action' in payload.keys():
29
if payload['action'] == 'released' and 'release' in payload.keys():
30
- asyncio.shield(processRelease(repo, payload))
+ asyncio.create_task(processRelease(repo, payload))
31
32
return 'Thanks!', 202
33
0 commit comments