Skip to content
Snippets Groups Projects
Commit 90d7953c authored by jakubs's avatar jakubs
Browse files

SSDM-2351 Expose thread parameters with the intention of using it in dropbox monitor

SVN: 34491
parent d9758776
No related branches found
No related tags found
No related merge requests found
...@@ -123,6 +123,13 @@ public final class ETLDaemon ...@@ -123,6 +123,13 @@ public final class ETLDaemon
@Private @Private
static IExitHandler exitHandler = SystemExit.SYSTEM_EXIT; static IExitHandler exitHandler = SystemExit.SYSTEM_EXIT;
private static ThreadParameters[] threads;
public static ThreadParameters[] getThreadParameters()
{
return threads;
}
private static void printInitialLogMessage(final Parameters parameters) private static void printInitialLogMessage(final Parameters parameters)
{ {
operationLog.info("Data Store Server is starting up."); operationLog.info("Data Store Server is starting up.");
...@@ -241,7 +248,7 @@ public final class ETLDaemon ...@@ -241,7 +248,7 @@ public final class ETLDaemon
private static void startupServer(final Parameters parameters) private static void startupServer(final Parameters parameters)
{ {
final ThreadParameters[] threads = parameters.getThreads(); threads = parameters.getThreads();
IEncapsulatedOpenBISService openBISService = ServiceProvider.getOpenBISService(); IEncapsulatedOpenBISService openBISService = ServiceProvider.getOpenBISService();
final Properties properties = parameters.getProperties(); final Properties properties = parameters.getProperties();
final boolean notifySuccessfulRegistration = getNotifySuccessfulRegistration(properties); final boolean notifySuccessfulRegistration = getNotifySuccessfulRegistration(properties);
......
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