Skip to content

Commit

Permalink
Phase
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim-Brooks committed May 13, 2024
1 parent 8568a4e commit a181782
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,10 @@ private void assertAllPendingWriteLimitsReleased() throws Exception {
final long coordinatingBytes = indexingPressure.stats().getCurrentCoordinatingBytes();
final long primaryBytes = indexingPressure.stats().getCurrentPrimaryBytes();
if (combinedBytes > 0) {
logger.error("Outstanding tasks: \n{}", client().admin().cluster().prepareListTasks(nodeAndClient.name).get());
logger.error(
"Outstanding tasks: \n{}",
client().admin().cluster().prepareListTasks(nodeAndClient.name).setDetailed(true).get()
);
throw new AssertionError(
"pending combined bytes ["
+ combinedBytes
Expand Down

0 comments on commit a181782

Please sign in to comment.