Issue #2041 fix python job coordinator shutdown.

Former-commit-id: 4bf7b44234 [formerly c749e5f77e06ede7fa39ece6846d957b8edfaed2]
Former-commit-id: ab0bb800cb
This commit is contained in:
Ben Steffensmeier 2013-06-06 13:11:31 -05:00
parent 553e2412ca
commit 8111840673

View file

@ -177,7 +177,7 @@ public class PythonJobCoordinator<P extends PythonInterpreter> {
*/
public void shutdown() {
synchronized (pools) {
pools.remove(this);
pools.values().remove(this);
}
execService.shutdown();
}