You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
protected void waitForComponentsToInitialize() {
...
LOGGER.debug("Waiting for {} Data Generators to be ready.", taskGenContainerIds.size());
try {
taskGenReadyMutex.acquire(taskGenContainerIds.size());
} catch (InterruptedException e) {
String errorMsg = "Interrupted while waiting for the task generators to be ready.";
LOGGER.error(errorMsg);
throw new IllegalStateException(errorMsg, e);
}
......
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: