From 16bfea61245b9afb107de2df2cf55bade58e2329 Mon Sep 17 00:00:00 2001 From: kklldog Date: Wed, 6 Apr 2022 00:00:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=97=A5=E5=BF=97=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AgileConfig.Server.Service/RemoteServerNodeProxy.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/AgileConfig.Server.Service/RemoteServerNodeProxy.cs b/AgileConfig.Server.Service/RemoteServerNodeProxy.cs index d376bfcf..a22aa612 100644 --- a/AgileConfig.Server.Service/RemoteServerNodeProxy.cs +++ b/AgileConfig.Server.Service/RemoteServerNodeProxy.cs @@ -79,11 +79,11 @@ public async Task AllClientsDoActionAsync(string address, WebsocketAction using (var service = GetSysLogService()) { var module = ""; - if (action.Module == "R") + if (action.Module == "r") { module = "注册中心"; } - if (action.Module == "C") + if (action.Module == "c") { module = "配置中心"; } @@ -124,11 +124,11 @@ public async Task AppClientsDoActionAsync(string address, string appId, st using (var service = GetSysLogService()) { var module = ""; - if (action.Module == "R") + if (action.Module == "r") { module = "注册中心"; } - if (action.Module == "C") + if (action.Module == "c") { module = "配置中心"; } @@ -183,11 +183,11 @@ public async Task OneClientDoActionAsync(string address, string clientId, using (var service = GetSysLogService()) { var module = ""; - if (action.Module == "R") + if (action.Module == "r") { module = "注册中心"; } - if (action.Module == "C") + if (action.Module == "c") { module = "配置中心"; }