From 872aff020c90b97ee18509929a7d8b51d9ca11da Mon Sep 17 00:00:00 2001 From: "tao.chen" <93983997+taochen-ct@users.noreply.github.com> Date: Mon, 24 Aug 2026 15:02:26 +0800 Subject: [PATCH] chore: remove print --- common/src/common/config.py | 2 +- docker-compose.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common/src/common/config.py b/common/src/common/config.py index 2fd1b75..734c410 100644 --- a/common/src/common/config.py +++ b/common/src/common/config.py @@ -265,7 +265,7 @@ class Settings(BaseSettings): for key, val in values.items(): if isinstance(val, str) and val.startswith("ENC("): values[key] = _decrypt_value(val) - print(values[key]) + # print(values[key]) return values model_config = SettingsConfigDict( diff --git a/docker-compose.yml b/docker-compose.yml index 3aa2882..5ea023e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -52,7 +52,6 @@ services: runtime: condition: service_healthy volumes: - - ${PWD}/frontend/build/client:/usr/share/nginx/html - ./default.conf:/etc/nginx/conf.d/default.conf.template:ro healthcheck: test: [ "CMD-SHELL", "wget -qO- http://127.0.0.1/ >/dev/null" ]