Browse Source

Add missing `cancel()` in tasks example

pull/9182/head
sgtlaggy 2 years ago
committed by Danny
parent
commit
de2349e707
  1. 3
      docs/ext/tasks/index.rst

3
docs/ext/tasks/index.rst

@ -116,6 +116,9 @@ Doing something during cancellation:
self.lock = asyncio.Lock()
self.bulker.start()
async def cog_unload(self):
self.bulker.cancel()
async def do_bulk(self):
# bulk insert data here
...

Loading…
Cancel
Save