Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
90d7953c
Commit
90d7953c
authored
9 years ago
by
jakubs
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-2351 Expose thread parameters with the intention of using it in dropbox monitor
SVN: 34491
parent
d9758776
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/source/java/ch/systemsx/cisd/etlserver/ETLDaemon.java
+8
-1
8 additions, 1 deletion
...ver/source/java/ch/systemsx/cisd/etlserver/ETLDaemon.java
with
8 additions
and
1 deletion
datastore_server/source/java/ch/systemsx/cisd/etlserver/ETLDaemon.java
+
8
−
1
View file @
90d7953c
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment