We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a3bc3 commit 7d70681Copy full SHA for 7d70681
services/efs-guardian/src/simcore_service_efs_guardian/services/background_tasks_setup.py
@@ -48,7 +48,7 @@ async def _startup() -> None:
48
# Setup periodic tasks
49
for task in _EFS_GUARDIAN_BACKGROUND_TASKS:
50
app.state.efs_guardian_background_tasks.append(
51
- asyncio.create_task(task["task_func"](), name=task["name"])
+ await asyncio.create_task(task["task_func"](), name=task["name"])
52
)
53
54
return _startup
0 commit comments