We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d5d76 commit 84679deCopy full SHA for 84679de
server/src/main/java/org/opensearch/cluster/SnapshotsInProgress.java
@@ -747,7 +747,7 @@ public void writeTo(StreamOutput out) throws IOException {
747
snapshot.writeTo(out);
748
out.writeBoolean(includeGlobalState);
749
out.writeBoolean(partial);
750
- if ((out.getVersion().before(Version.V_3_0_0)) && state == State.PARTIAL) {
+ if ((out.getVersion().before(Version.V_2_14_0)) && state == State.PARTIAL) {
751
// Setting to SUCCESS for partial snapshots in older versions to maintain backward compatibility
752
out.writeByte(State.SUCCESS.value());
753
} else {
0 commit comments