Skip to content

Commit

Permalink
HDDS-8728. Incorrect expectedNodes passed to InsufficientNodesExcepti…
Browse files Browse the repository at this point in the history
…on (#4797)
  • Loading branch information
sodonnel committed May 31, 2023
1 parent f5ba2f5 commit d00332d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private int processMissingIndexes(
" to fully reconstruct container {}. Requested {} received {}",
container.getContainerID(), expectedTargets,
selectedDatanodes.size());
throw new InsufficientDatanodesException(missingIndexes.size(),
throw new InsufficientDatanodesException(expectedTargets,
selectedDatanodes.size());
}
} else {
Expand Down

0 comments on commit d00332d

Please sign in to comment.