Skip to content

Commit 7d70681

Browse files
fix
1 parent a4a3bc3 commit 7d70681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/efs-guardian/src/simcore_service_efs_guardian/services/background_tasks_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async def _startup() -> None:
4848
# Setup periodic tasks
4949
for task in _EFS_GUARDIAN_BACKGROUND_TASKS:
5050
app.state.efs_guardian_background_tasks.append(
51-
asyncio.create_task(task["task_func"](), name=task["name"])
51+
await asyncio.create_task(task["task_func"](), name=task["name"])
5252
)
5353

5454
return _startup

0 commit comments

Comments
 (0)