Add toString() for TransportReplicationAction.ConcreteShardRequest
This commit is contained in:
parent
31a1c2e240
commit
c87cc15d49
|
@ -1124,6 +1124,11 @@ public abstract class TransportReplicationAction<
|
||||||
public String getTargetAllocationID() {
|
public String getTargetAllocationID() {
|
||||||
return targetAllocationID;
|
return targetAllocationID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "request: " + request + ", target allocation id: " + targetAllocationID;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue