Remove leftover debugging statement
This commit is contained in:
parent
86a8a0a570
commit
aa26b66e96
|
@ -41,7 +41,6 @@ import org.elasticsearch.cluster.node.DiscoveryNode;
|
||||||
import org.elasticsearch.cluster.node.DiscoveryNodes;
|
import org.elasticsearch.cluster.node.DiscoveryNodes;
|
||||||
import org.elasticsearch.cluster.routing.ShardRouting;
|
import org.elasticsearch.cluster.routing.ShardRouting;
|
||||||
import org.elasticsearch.cluster.routing.ShardsIterator;
|
import org.elasticsearch.cluster.routing.ShardsIterator;
|
||||||
import org.elasticsearch.common.SuppressForbidden;
|
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
import org.elasticsearch.common.io.stream.StreamOutput;
|
||||||
import org.elasticsearch.common.io.stream.Streamable;
|
import org.elasticsearch.common.io.stream.Streamable;
|
||||||
|
@ -410,13 +409,11 @@ public abstract class TransportBroadcastByNodeAction<Request extends BroadcastRe
|
||||||
protected NodeRequest() {
|
protected NodeRequest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressForbidden(reason = "debug")
|
|
||||||
public NodeRequest(String nodeId, Request request, List<ShardRouting> shards) {
|
public NodeRequest(String nodeId, Request request, List<ShardRouting> shards) {
|
||||||
super(request);
|
super(request);
|
||||||
this.indicesLevelRequest = request;
|
this.indicesLevelRequest = request;
|
||||||
this.shards = shards;
|
this.shards = shards;
|
||||||
this.nodeId = nodeId;
|
this.nodeId = nodeId;
|
||||||
System.out.println(TransportBroadcastByNodeAction.this.getClass().getName());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<ShardRouting> getShards() {
|
public List<ShardRouting> getShards() {
|
||||||
|
|
Loading…
Reference in New Issue