Skip to content

Commit

Permalink
[CI] Auto commit changes from spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticsearchmachine committed Jan 1, 2025
1 parent 5a35cec commit 4055880
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public int hashCode() {
indexTimeInMillis,
indexCurrent,
indexFailedCount,
indexFailedDueToVersionConflictCount,
indexFailedDueToVersionConflictCount,
deleteCount,
deleteTimeInMillis,
deleteCurrent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ public void testShardStatsForIndexing() {
assertThat(row.get(33).value, equalTo(shardStats.getStats().getIndexing().getTotal().getIndexTime()));
assertThat(row.get(34).value, equalTo(shardStats.getStats().getIndexing().getTotal().getIndexCount()));
assertThat(row.get(35).value, equalTo(shardStats.getStats().getIndexing().getTotal().getIndexFailedCount()));
assertThat(row.get(36).value, equalTo(shardStats.getStats().getIndexing().getTotal().getIndexFailedDueToVersionConflictCount()));
assertThat(
row.get(36).value,
equalTo(shardStats.getStats().getIndexing().getTotal().getIndexFailedDueToVersionConflictCount())
);
}
}

Expand Down

0 comments on commit 4055880

Please sign in to comment.