Skip to content

Commit 464598f

Browse files
Fix Compilation of RepositoryData
Fix conflict from two subsequent PRs removing `incompatibleSnapshots`
1 parent 6e9642b commit 464598f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/repositories/RepositoryData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public RepositoryData withGenId(long newGeneration) {
164164
if (newGeneration == genId) {
165165
return this;
166166
}
167-
return new RepositoryData(newGeneration, this.snapshotIds, this.snapshotStates, this.indexSnapshots, incompatibleSnapshotIds);
167+
return new RepositoryData(newGeneration, this.snapshotIds, this.snapshotStates, this.indexSnapshots);
168168
}
169169

170170
/**

0 commit comments

Comments
 (0)