Skip to content
Snippets Groups Projects
Commit 55a957bb authored by jakubs's avatar jakubs
Browse files

minor: improve error message when starting the data store server

SVN: 28776
parent 15a55f87
No related branches found
No related tags found
No related merge requests found
......@@ -423,12 +423,19 @@ public final class ETLDaemon
new DynamicTransactionQueryFactory(), notifySuccessfulRegistration,
threadParameters, new DataSetStorageRecoveryManager());
ITopLevelDataSetRegistrator registrator =
ClassUtils.create(ITopLevelDataSetRegistrator.class, threadParameters
.getTopLevelDataSetRegistratorClass(TransferredDataSetHandler.class),
globalState);
try
{
ITopLevelDataSetRegistrator registrator =
ClassUtils.create(ITopLevelDataSetRegistrator.class, threadParameters
.getTopLevelDataSetRegistratorClass(TransferredDataSetHandler.class),
globalState);
return registrator;
return registrator;
} catch (ConfigurationFailureException e)
{
throw new ConfigurationFailureException("Couldn't create a dropbox "
+ threadParameters.getThreadName(), e);
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment