Simona Simeonova

Results 3 comments of Simona Simeonova

Yes, sorry :) ``` Traceback (most recent call last): File "C:\Users\SimonaSimeonova\Documents\projects\be__cronjob\venv\lib\site-packages\python_core\libraries\default_handler.py", line 54, in handle endpoint_response = await func(endpoint_request, endpoint_response) File "C:\Users\SimonaSimeonova\Documents\projects\be__cronjob\v1\controllers\model_controllers\job\__init__.py", line 39, in run result = await asyncio.gather(*tasks)...

Im actually using a pool: ``` async with db_adapter.get_db().acquire() as conn: print('in context') job_instance, job_execution = await cls._run_job_internal(job, conn=conn) ``` `db_adapter.get_db()` is a wrapper of the gino engine and using...

Okay, so i started a separate engine specifically for this part of the application and the error seems to go away only when there are records in my table. Seems...