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 = "配置中心"; }