Skip to content

HDDS-12483. Quasi Closed Stuck should have 2 replicas of each origin #8014

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Mar 12, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix overloaded log message
  • Loading branch information
S O'Donnell committed Mar 11, 2025
commit a593be9cf8b315996d4a3c8a1229531082eb3625
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public int processAndSendCommands(Set<ContainerReplica> replicas, List<Container
mutablePendingOps.add(ContainerReplicaOp.create(ContainerReplicaOp.PendingOpType.ADD, target, 0));
totalCommandsSent++;
} catch (CommandTargetOverloadedException e) {
LOG.warn("Cannot replicate container {} because target {} is overloaded.", containerInfo, target);
LOG.warn("Cannot replicate container {} because all sources are overloaded.", containerInfo);
if (firstException == null) {
firstException = e;
}
Expand Down