Skip to content

Commit 7ba565d

Browse files
committed
Moving everything into a multithread
1 parent b83f92e commit 7ba565d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ async def webhooks(repo):
2828
if payload['repository']['name'] == repo and 'action' in payload.keys():
2929
if payload['action'] == 'released' and 'release' in payload.keys():
3030
p = Process(target=processRelease, args=(repo,payload))
31+
print(p.pid)
3132
p.start()
3233

3334
return 'Thanks!', 202

0 commit comments

Comments
 (0)