File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
services/storage/src/simcore_service_storage/modules/celery Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def get_task_status(
9292 progress_report = self ._get_progress_report (task_context , task_uuid ),
9393 )
9494
95- def _get_completed_task_ids (self , task_context : TaskContext ) -> set [TaskUUID ]:
95+ def _get_completed_task_uuids (self , task_context : TaskContext ) -> set [TaskUUID ]:
9696 search_key = (
9797 _CELERY_TASK_META_PREFIX + _build_task_id_prefix (task_context ) + "*"
9898 )
@@ -106,7 +106,7 @@ def _get_completed_task_ids(self, task_context: TaskContext) -> set[TaskUUID]:
106106
107107 @make_async ()
108108 def get_task_uuids (self , task_context : TaskContext ) -> set [TaskUUID ]:
109- all_task_ids = self ._get_completed_task_ids (task_context )
109+ all_task_ids = self ._get_completed_task_uuids (task_context )
110110
111111 for task_inspect_status in _CELERY_INSPECT_TASK_STATUSES :
112112 if task_ids := getattr (
You can’t perform that action at this time.
0 commit comments