File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
server/src/main/java/org/elasticsearch/indices/store Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -158,23 +158,6 @@ public void clusterChanged(ClusterChangedEvent event) {
158158 }
159159
160160 for (IndexRoutingTable indexRoutingTable : routingTable ) {
161- indexRoutingTable .allShards ().forEach (shardRouting -> {
162- shardRouting .allShards ().forEach (sr -> {
163- System .out .println (
164- "Shard "
165- + sr .currentNodeId ()
166- + "/"
167- + sr .index ()
168- + "/"
169- + sr .id ()
170- + " - State "
171- + sr .state ()
172- + " "
173- + sr .shortSummary ()
174- );
175- });
176- });
177-
178161 // Note, closed indices will not have any routing information, so won't be deleted
179162 for (int i = 0 ; i < indexRoutingTable .size (); i ++) {
180163 IndexShardRoutingTable indexShardRoutingTable = indexRoutingTable .shard (i );
You can’t perform that action at this time.
0 commit comments