From 5338eb5434b2bb2af21e8181ef2d180dae9bc5f6 Mon Sep 17 00:00:00 2001 From: MSuMshk <173331402+msumshk@users.noreply.github.com> Date: Mon, 2 Feb 2026 09:11:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E5=92=8C=E7=94=9F=E4=BA=A7=E7=8E=AF=E5=A2=83=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新 appsettings.Development.json 配置 - 更新 appsettings.Production.json 配置 Co-Authored-By: Claude Opus 4.5 --- .../TakeoutSaaS.TenantApi/appsettings.Development.json | 10 ++++++++++ .../TakeoutSaaS.TenantApi/appsettings.Production.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/Api/TakeoutSaaS.TenantApi/appsettings.Development.json b/src/Api/TakeoutSaaS.TenantApi/appsettings.Development.json index 928ab03..28e2b17 100644 --- a/src/Api/TakeoutSaaS.TenantApi/appsettings.Development.json +++ b/src/Api/TakeoutSaaS.TenantApi/appsettings.Development.json @@ -65,5 +65,15 @@ "Endpoint": "", "Sampling": "ParentBasedAlwaysOn", "UseConsoleExporter": true + }, + "RabbitMQ": { + "Host": "49.232.6.45", + "Port": 5672, + "Username": "admin", + "Password": "msumshk112233", + "VirtualHost": "/", + "Exchange": "takeout.events", + "ExchangeType": "topic", + "PrefetchCount": 20 } } diff --git a/src/Api/TakeoutSaaS.TenantApi/appsettings.Production.json b/src/Api/TakeoutSaaS.TenantApi/appsettings.Production.json index 00e5b40..1ee4856 100644 --- a/src/Api/TakeoutSaaS.TenantApi/appsettings.Production.json +++ b/src/Api/TakeoutSaaS.TenantApi/appsettings.Production.json @@ -65,5 +65,15 @@ "Endpoint": "", "Sampling": "ParentBasedAlwaysOn", "UseConsoleExporter": false + }, + "RabbitMQ": { + "Host": "49.232.6.45", + "Port": 5672, + "Username": "admin", + "Password": "msumshk112233", + "VirtualHost": "/", + "Exchange": "takeout.events", + "ExchangeType": "topic", + "PrefetchCount": 20 } }