Skip to content

Commit

Permalink
[CORE] Remove Restart API and remove Node#stop()
Browse files Browse the repository at this point in the history
The restart API seems pretty esoteric and is entirely untested.
This commit removes it without a replacement.

Closes #9841
  • Loading branch information
s1monw committed Feb 27, 2015
1 parent 2b8827d commit ce53e20
Show file tree
Hide file tree
Showing 16 changed files with 5 additions and 585 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/elasticsearch/action/ActionModule.java
Expand Up @@ -28,8 +28,6 @@
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoAction;
import org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction;
import org.elasticsearch.action.admin.cluster.node.liveness.TransportLivenessAction;
import org.elasticsearch.action.admin.cluster.node.restart.NodesRestartAction;
import org.elasticsearch.action.admin.cluster.node.restart.TransportNodesRestartAction;
import org.elasticsearch.action.admin.cluster.node.shutdown.NodesShutdownAction;
import org.elasticsearch.action.admin.cluster.node.shutdown.TransportNodesShutdownAction;
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsAction;
Expand Down Expand Up @@ -228,7 +226,6 @@ protected void configure() {
registerAction(NodesInfoAction.INSTANCE, TransportNodesInfoAction.class);
registerAction(NodesStatsAction.INSTANCE, TransportNodesStatsAction.class);
registerAction(NodesShutdownAction.INSTANCE, TransportNodesShutdownAction.class);
registerAction(NodesRestartAction.INSTANCE, TransportNodesRestartAction.class);
registerAction(NodesHotThreadsAction.INSTANCE, TransportNodesHotThreadsAction.class);

registerAction(ClusterStatsAction.INSTANCE, TransportClusterStatsAction.class);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit ce53e20

Please sign in to comment.