We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1450156 + a3628fd commit cd57342Copy full SHA for cd57342
1 file changed
framework/src/main/java/org/tron/core/config/args/Args.java
@@ -1351,8 +1351,8 @@ private static void bindIp(final com.typesafe.config.Config config) {
1351
PARAMETER.nodeDiscoveryBindIp = s.getLocalAddress().getHostAddress();
1352
logger.info("UDP local bound to: {}", PARAMETER.nodeDiscoveryBindIp);
1353
} catch (IOException e) {
1354
- logger.warn("Can't get bind IP. Fall back to 0.0.0.0: " + e);
1355
- PARAMETER.nodeDiscoveryBindIp = "0.0.0.0";
+ logger.warn("Can't get bind IP. Fall back to 127.0.0.1: " + e);
+ PARAMETER.nodeDiscoveryBindIp = "127.0.0.1";
1356
}
1357
1358
} else {
0 commit comments