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
5d3a345d
Commit
5d3a345d
authored
16 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
DMV-13 minor: better documentation for 'handshake' script
SVN: 6220
parent
0a247665
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
datamover/dist/etc/service.properties
+1
-1
1 addition, 1 deletion
datamover/dist/etc/service.properties
datamover/source/java/ch/systemsx/cisd/datamover/Parameters.java
+1
-1
1 addition, 1 deletion
...er/source/java/ch/systemsx/cisd/datamover/Parameters.java
with
2 additions
and
2 deletions
datamover/dist/etc/service.properties
+
1
−
1
View file @
5d3a345d
...
@@ -37,4 +37,4 @@ prefix-for-incoming = %t_
...
@@ -37,4 +37,4 @@ prefix-for-incoming = %t_
# extra-copy-dir = <path to a directory. If specified, a copy of incoming data will be made there>
# extra-copy-dir = <path to a directory. If specified, a copy of incoming data will be made there>
# prefix-for-incoming = prefix that is put in front of every incoming data directory, %t will be replaced with time stamp
# prefix-for-incoming = prefix that is put in front of every incoming data directory, %t will be replaced with time stamp
# data-completed-script = script executed to check whether incoming data are complete or not
# data-completed-script = script executed to check whether incoming data are complete or not
# data-completed-script-timeout = time
out for data completed script if it doesn't stop
# data-completed-script-timeout = timeout
in seconds
for data completed script if it doesn't stop
This diff is collapsed.
Click to expand it.
datamover/source/java/ch/systemsx/cisd/datamover/Parameters.java
+
1
−
1
View file @
5d3a345d
...
@@ -68,7 +68,7 @@ public final class Parameters implements ITimingParameters, IFileSysParameters
...
@@ -68,7 +68,7 @@ public final class Parameters implements ITimingParameters, IFileSysParameters
@Option
(
longName
=
PropertyNames
.
DATA_COMPLETED_SCRIPT
,
metaVar
=
"EXEC"
,
usage
=
"Optional script which checks whether incoming data is complete or not."
)
@Option
(
longName
=
PropertyNames
.
DATA_COMPLETED_SCRIPT
,
metaVar
=
"EXEC"
,
usage
=
"Optional script which checks whether incoming data is complete or not."
)
private
String
dataCompletedScript
;
private
String
dataCompletedScript
;
@Option
(
longName
=
PropertyNames
.
DATA_COMPLETED_SCRIPT_TIMEOUT
,
usage
=
"Timeout (in seconds) data completed script will be stopped "
@Option
(
longName
=
PropertyNames
.
DATA_COMPLETED_SCRIPT_TIMEOUT
,
usage
=
"Timeout (in seconds)
after which
data completed script will be stopped "
+
"[default: "
+
DEFAULT_DATA_COMPLETED_SCRIPT_TIMEOUT
+
"]"
,
handler
=
MillisecondConversionOptionHandler
.
class
)
+
"[default: "
+
DEFAULT_DATA_COMPLETED_SCRIPT_TIMEOUT
+
"]"
,
handler
=
MillisecondConversionOptionHandler
.
class
)
private
long
dataCompletedScriptTimeout
=
DEFAULT_DATA_COMPLETED_SCRIPT_TIMEOUT
;
private
long
dataCompletedScriptTimeout
=
DEFAULT_DATA_COMPLETED_SCRIPT_TIMEOUT
;
...
...
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