JobExecutionData execution = createExecution(jobData);
PersistentActiveJob activeJob = new PersistentActiveJob(SimpleOperationQueue.this, auth, execution);
activeJobs.put(execution.jobKey, activeJob);
OperationWorker operationWorker = new OperationWorker(opsSystem, activeJob);
return operationWorker.call();
} finally {
Locks.unlock(lock);
}
}