return;
}
WriteLock l = null;
try {
l = new WriteLock(zk, "/ironcount/workloads/" + w.name,null);
l.lock();
List<String> children = zk.getChildren("/ironcount/workloads/" + w.name, false);
if (children.size() <= w.maxWorkers){
WorkerThread wt = new WorkerThread(this,w);
this.executor.submit(wt);
this.workerThreads.put(wt, new Object());