Add toString() for TransportReplicationAction.ConcreteShardRequest

This commit is contained in:
Yannick Welsch 2016-12-07 15:57:32 +01:00
parent 31a1c2e240
commit c87cc15d49
1 changed files with 5 additions and 0 deletions

View File

@ -1124,6 +1124,11 @@ public abstract class TransportReplicationAction<
public String getTargetAllocationID() {
return targetAllocationID;
}
@Override
public String toString() {
return "request: " + request + ", target allocation id: " + targetAllocationID;
}
}
/**