We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BaseException
1 parent be6294e commit 1a71ab7Copy full SHA for 1a71ab7
1 file changed
src/crawlee/_autoscaling/autoscaled_pool.py
@@ -123,6 +123,7 @@ async def run(self) -> None:
123
)
124
125
try:
126
+ logger.info(f'Await result')
127
await run.result
128
logger.info(f'Finished naturally, {run.worker_tasks=}, {run.result.result()=}')
129
except AbortError:
@@ -134,6 +135,9 @@ async def run(self) -> None:
134
135
except Exception as exc:
136
logger.error('Something sinister happened', exc_info=exc)
137
raise
138
+ except BaseException as exc:
139
+ logger.error('BaseException happened', exc_info=exc)
140
+ raise
141
142
finally:
143
logger.error('finally')
0 commit comments