Mark Parker

Results 5 comments of Mark Parker

[I fixed it by setting poolclass=NullPool in create_async_engine](https://stackoverflow.com/a/73485900/11677524)

[I fixed it by setting poolclass=NullPool in create_async_engine](https://stackoverflow.com/a/73485900/11677524)

Looks like @OvyFlash has picked up the baton: [OvyFlash/telegram-bot-api](https://github.com/OvyFlash/telegram-bot-api)

I see there 3 options: 1. Handle exceptions inside func1 (func2) ```py async def func1(name: str): try: return {"message": f"Hello {name} form func1"} except: return {} # fallback value ......