From 6574b69e981cbacc916ee0e6fa0dcd7bb14c4dd2 Mon Sep 17 00:00:00 2001 From: Zhendong Liu Date: Mon, 7 Jan 2019 19:12:45 +0800 Subject: [PATCH] Remove the log when get none remote address strategy --- .../apache/rocketmq/acl/plain/RemoteAddressStrategyFactory.java | 1 - 1 file changed, 1 deletion(-) diff --git a/acl/src/main/java/org/apache/rocketmq/acl/plain/RemoteAddressStrategyFactory.java b/acl/src/main/java/org/apache/rocketmq/acl/plain/RemoteAddressStrategyFactory.java index c9166f8d..de29e92f 100644 --- a/acl/src/main/java/org/apache/rocketmq/acl/plain/RemoteAddressStrategyFactory.java +++ b/acl/src/main/java/org/apache/rocketmq/acl/plain/RemoteAddressStrategyFactory.java @@ -39,7 +39,6 @@ public class RemoteAddressStrategyFactory { public RemoteAddressStrategy getRemoteAddressStrategy(String remoteAddr) { if (StringUtils.isBlank(remoteAddr)) { - log.warn("white list address is null"); return BLANK_NET_ADDRESS_STRATEGY; } if ("*".equals(remoteAddr)) { -- GitLab