mirror of https://github.com/apache/druid.git
Add TaskLockPosse#toString
This commit is contained in:
parent
0b054cdd3d
commit
665d1723c0
|
@ -1,6 +1,7 @@
|
|||
package com.metamx.druid.merger.coordinator;
|
||||
|
||||
import com.google.common.base.Function;
|
||||
import com.google.common.base.Objects;
|
||||
import com.google.common.base.Optional;
|
||||
import com.google.common.base.Predicate;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
@ -401,5 +402,14 @@ public class TaskLockbox
|
|||
{
|
||||
return taskIds;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return Objects.toStringHelper(this)
|
||||
.add("taskLock", taskLock)
|
||||
.add("taskIds", taskIds)
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue