Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3056,8 +3056,12 @@ public List<List<String>> getRatisRoles() {
String leaderReadiness = omRatisServer.checkLeaderStatus().name();
final RaftPeerId leaderId = omRatisServer.getLeaderId();
if (leaderId == null) {
LOG.error("No leader found");
return getRatisRolesException("No leader found");
LOG.error("There is no leader among the Ozone Manager servers. If this message persists, the service may " +
"be down. Possible cause: only one OM is up, or other OMs are unable to respond to Ratis " +
"leader vote messages.");
return getRatisRolesException("There is no leader among the Ozone Manager servers. If this message " +
Comment thread
sadanand48 marked this conversation as resolved.
Outdated
"persists, the service may be down. Possible cause: only one OM is up, or " +
"other OMs are unable to respond to Ratis leader vote messages");
}

final List<ServiceInfo> serviceList;
Expand Down