File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
services/dask-sidecar/tests/unit Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1515import pytest
1616import simcore_service_dask_sidecar
1717from aiobotocore .session import AioBaseClient , get_session
18+ from common_library .json_serialization import json_dumps
19+ from common_library .serialization import model_dump_with_secrets
1820from dask_task_models_library .container_tasks .protocol import TaskOwner
1921from faker import Faker
2022from models_library .projects import ProjectID
@@ -91,7 +93,9 @@ def app_environment(
9193 # .env-devel
9294 ** env_devel_dict ,
9395 # Variables directly define inside Dockerfile
94- "DASK_WORKER_RABBITMQ" : rabbit_service .model_dump_json (),
96+ "DASK_SIDECAR_RABBITMQ" : json_dumps (
97+ model_dump_with_secrets (rabbit_service , show_secrets = True )
98+ ),
9599 "SC_BOOT_MODE" : "debug" ,
96100 "SIDECAR_LOGLEVEL" : "DEBUG" ,
97101 "SIDECAR_COMP_SERVICES_SHARED_VOLUME_NAME" : "simcore_computational_shared_data" ,
You can’t perform that action at this time.
0 commit comments