Skip to content

Commit

Permalink
Visibility changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Nov 3, 2023
1 parent b9a6b81 commit 019d133
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,11 @@ public class ShardAllocationCounts {
int initializing = 0;
int started = 0;
int relocating = 0;
final Set<String> indicesWithUnavailableShards = new HashSet<>();
final Set<String> indicesWithAllShardsUnavailable = new HashSet<>();
protected final Set<String> indicesWithUnavailableShards = new HashSet<>();
protected final Set<String> indicesWithAllShardsUnavailable = new HashSet<>();
// We keep the searchable snapshots separately as long as the original index is still available
// This is checked during the post-processing
SearchableSnapshotsState searchableSnapshotsState = new SearchableSnapshotsState();
protected SearchableSnapshotsState searchableSnapshotsState = new SearchableSnapshotsState();
final Map<Diagnosis.Definition, Set<String>> diagnosisDefinitions = new HashMap<>();

public void increment(ShardRouting routing, ClusterState state, NodesShutdownMetadata shutdowns, boolean verbose) {
Expand Down

0 comments on commit 019d133

Please sign in to comment.