Skip to content

Commit

Permalink
More visibility changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Nov 3, 2023
1 parent 019d133 commit 0c4947e
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;
protected final Set<String> indicesWithUnavailableShards = new HashSet<>();
protected final Set<String> indicesWithAllShardsUnavailable = new HashSet<>();
public final Set<String> indicesWithUnavailableShards = new HashSet<>();
public 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
protected SearchableSnapshotsState searchableSnapshotsState = new SearchableSnapshotsState();
public 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 0c4947e

Please sign in to comment.