Skip to content

Commit f36680b

Browse files
committed
typo
1 parent b893180 commit f36680b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/storage/tests/unit/test_modules_celery.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
TaskState,
2828
)
2929
from simcore_service_storage.modules.celery.utils import (
30+
get_celery_worker,
3031
get_fastapi_app,
31-
get_with_storage_celery_worker,
3232
)
3333
from simcore_service_storage.modules.celery.worker import CeleryTaskQueueWorker
3434
from tenacity import Retrying, retry_if_exception_type, stop_after_delay, wait_fixed
@@ -49,7 +49,7 @@ def celery_client(
4949
async def _async_archive(
5050
celery_app: Celery, task_name: str, task_id: str, files: list[str]
5151
) -> str:
52-
worker = get_with_storage_celery_worker(celery_app)
52+
worker = get_celery_worker(celery_app)
5353

5454
def sleep_for(seconds: float) -> None:
5555
time.sleep(seconds)

0 commit comments

Comments
 (0)