File tree 1 file changed +2
-2
lines changed
server/src/main/java/org/opensearch/snapshots
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -473,7 +473,7 @@ public SnapshotInfo(final StreamInput in) throws IOException {
473
473
if (in .getVersion ().onOrAfter (Version .V_2_9_0 )) {
474
474
remoteStoreIndexShallowCopy = in .readOptionalBoolean ();
475
475
}
476
- if (in .getVersion ().onOrAfter (Version .V_3_0_0 )) {
476
+ if (in .getVersion ().onOrAfter (Version .V_2_17_0 )) {
477
477
pinnedTimestamp = in .readVLong ();
478
478
}
479
479
}
@@ -940,7 +940,7 @@ public void writeTo(final StreamOutput out) throws IOException {
940
940
if (out .getVersion ().onOrAfter (Version .V_2_9_0 )) {
941
941
out .writeOptionalBoolean (remoteStoreIndexShallowCopy );
942
942
}
943
- if (out .getVersion ().onOrAfter (Version .V_3_0_0 )) {
943
+ if (out .getVersion ().onOrAfter (Version .V_2_17_0 )) {
944
944
out .writeVLong (pinnedTimestamp );
945
945
}
946
946
}
You can’t perform that action at this time.
0 commit comments