|
@@ -198,6 +198,11 @@ public class RMContainerImpl implements RMContainer {
|
|
|
return reservedPriority;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return containerId.toString();
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public void handle(RMContainerEvent event) {
|
|
|
LOG.debug("Processing " + event.getContainerId() + " of type " + event.getType());
|
|
@@ -221,7 +226,7 @@ public class RMContainerImpl implements RMContainer {
|
|
|
writeLock.unlock();
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static class BaseTransition implements
|
|
|
SingleArcTransition<RMContainerImpl, RMContainerEvent> {
|
|
|
|