You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c:\projects\bottery\.tox\py35\lib\site-packages\bottery\bottery.py:107: RuntimeWarning: coroutine 'ClientSession.close' was never awaited
self.session.close()
c:\projects\bottery\.tox\py35\lib\site-packages\bottery\bottery.py:107: RuntimeWarning: coroutine 'ClientSession.close' was never awaited
self.session.close()
Seems like that line should be await self.session.close(), correct?
The text was updated successfully, but these errors were encountered:
This patch fixes two problems in the Bottery.stop behavior:
1. self.session.close() was not awaited;
2. self.loop.close() causes an exception "Can not close running loop" in
some cases.
I've seen this warnings in bottery's CI:
Seems like that line should be
await self.session.close()
, correct?The text was updated successfully, but these errors were encountered: