Olivier Lespagnon

Results 2 comments of Olivier Lespagnon

I'm not sure to understand the issue you linked. It used to work, even when I don't even use the aiohttp in the cron function. Could you please explain how...

```python @aiocron.crontab("*/15 * * * *") async def gather_new_missions(): print("test") # do stuff here async with aiohttp.ClientSession() as session: url = "example.com" async with session.get(url) as resp: if resp.status ==...