Skip to content

Commit

Permalink
Fix IT.
Browse files Browse the repository at this point in the history
  • Loading branch information
KomachiSion committed Aug 15, 2024
1 parent 16f8a22 commit 595ddb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public Optional<String> getErrorMsg() {
if (hasLeader()) {
return Optional.empty();
}
return Optional.of(
"No leader for raft group {}, please see logs `alipay-jraft.log` or `naming-raft.log` to see details.");
return Optional.of("No leader for raft group " + Constants.NAMING_PERSISTENT_SERVICE_GROUP
+ ", please see logs `alipay-jraft.log` or `naming-raft.log` to see details.");
}

public class ServerStatusUpdater implements Runnable {
Expand Down
2 changes: 1 addition & 1 deletion test/naming-test/src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# spring
server.port=8848
nacos.standalone=true

nacos.inetutils.ip-address=127.0.0.1

management.metrics.export.elastic.enabled=false
#management.metrics.export.elastic.host=http://localhost:9200
Expand Down

0 comments on commit 595ddb9

Please sign in to comment.