Skip to content

Commit

Permalink
version change to V_2.17.0 for node min version check (#15644)
Browse files Browse the repository at this point in the history
Signed-off-by: Anshu Agarwal <anshukag@amazon.com>
Co-authored-by: Anshu Agarwal <anshukag@amazon.com>
(cherry picked from commit 73e14ab)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and Anshu Agarwal committed Sep 5, 2024
1 parent cea8eea commit 05efd37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public void executeSnapshot(final CreateSnapshotRequest request, final ActionLis
if (remoteStoreIndexShallowCopy
&& isSnapshotV2
&& request.indices().length == 0
&& clusterService.state().nodes().getMinNodeVersion().onOrAfter(Version.CURRENT)) {
&& clusterService.state().nodes().getMinNodeVersion().onOrAfter(Version.V_2_17_0)) {
createSnapshotV2(request, listener);
} else {
createSnapshot(
Expand Down

0 comments on commit 05efd37

Please sign in to comment.