Merge "Issue #2041 fix python job coordinator shutdown." into development

Former-commit-id: 4d6418c7f32cdbd78fe52edc6f9e2784aeffd4e8
This commit is contained in:
Nate Jensen 2013-06-06 14:11:34 -05:00 committed by Gerrit Code Review
commit 855c2a4b58

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();
}