|
230 | 230 | import org.opensearch.action.admin.indices.template.put.TransportPutComponentTemplateAction;
|
231 | 231 | import org.opensearch.action.admin.indices.template.put.TransportPutComposableIndexTemplateAction;
|
232 | 232 | import org.opensearch.action.admin.indices.template.put.TransportPutIndexTemplateAction;
|
233 |
| -import org.opensearch.action.admin.indices.tiering.HotToWarmTieringAction; |
234 |
| -import org.opensearch.action.admin.indices.tiering.RestWarmTieringAction; |
235 |
| -import org.opensearch.action.admin.indices.tiering.TransportHotToWarmTieringAction; |
236 | 233 | import org.opensearch.action.admin.indices.upgrade.get.TransportUpgradeStatusAction;
|
237 | 234 | import org.opensearch.action.admin.indices.upgrade.get.UpgradeStatusAction;
|
238 | 235 | import org.opensearch.action.admin.indices.upgrade.post.TransportUpgradeAction;
|
@@ -668,9 +665,6 @@ public <Request extends ActionRequest, Response extends ActionResponse> void reg
|
668 | 665 | actions.register(CreateSnapshotAction.INSTANCE, TransportCreateSnapshotAction.class);
|
669 | 666 | actions.register(CloneSnapshotAction.INSTANCE, TransportCloneSnapshotAction.class);
|
670 | 667 | actions.register(RestoreSnapshotAction.INSTANCE, TransportRestoreSnapshotAction.class);
|
671 |
| - if (FeatureFlags.isEnabled(FeatureFlags.WRITABLE_WARM_INDEX_EXPERIMENTAL_FLAG)) { |
672 |
| - actions.register(HotToWarmTieringAction.INSTANCE, TransportHotToWarmTieringAction.class); |
673 |
| - } |
674 | 668 | actions.register(SnapshotsStatusAction.INSTANCE, TransportSnapshotsStatusAction.class);
|
675 | 669 |
|
676 | 670 | actions.register(ClusterAddWeightedRoutingAction.INSTANCE, TransportAddWeightedRoutingAction.class);
|
@@ -1017,9 +1011,6 @@ public void initRestHandlers(Supplier<DiscoveryNodes> nodesInCluster) {
|
1017 | 1011 | registerHandler.accept(new RestNodeAttrsAction());
|
1018 | 1012 | registerHandler.accept(new RestRepositoriesAction());
|
1019 | 1013 | registerHandler.accept(new RestSnapshotAction());
|
1020 |
| - if (FeatureFlags.isEnabled(FeatureFlags.WRITABLE_WARM_INDEX_EXPERIMENTAL_FLAG)) { |
1021 |
| - registerHandler.accept(new RestWarmTieringAction()); |
1022 |
| - } |
1023 | 1014 | registerHandler.accept(new RestTemplatesAction());
|
1024 | 1015 |
|
1025 | 1016 | // LIST API
|
|
0 commit comments