Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
compact-slowcontrol
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Peter-Bernd Otte
compact-slowcontrol
Commits
96c64719
Commit
96c64719
authored
Aug 11, 2019
by
Peter-Bernd Otte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor error in default argument of broker corrected.
parent
43a1602a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
python/fsr/fsr.py
python/fsr/fsr.py
+1
-1
No files found.
python/fsr/fsr.py
View file @
96c64719
...
...
@@ -17,7 +17,7 @@ logger = logging.getLogger("FSRMaster")
parser
=
argparse
.
ArgumentParser
(
description
=
'Workload distributor for trivial parallelism.'
)
parser
.
add_argument
(
"-v"
,
"--verbosity"
,
help
=
"increase output verbosity"
,
default
=
0
,
action
=
"count"
)
parser
.
add_argument
(
"-b"
,
"--mqtt-broker-host"
,
help
=
"MQTT broker hostname"
,
default
=
"loca
h
lhost"
)
parser
.
add_argument
(
"-b"
,
"--mqtt-broker-host"
,
help
=
"MQTT broker hostname"
,
default
=
"localhost"
)
parser
.
add_argument
(
"-t"
,
"--watchdog-timeout"
,
help
=
"timeout in seconds for the watchdog"
,
default
=
20
*
60
*
10
,
type
=
int
)
# ca. 10 mins
parser
.
add_argument
(
"mqtt_client_name"
,
help
=
"MQTT client name. Needs to be unique in the MQTT namespace, eg fsr-ww."
,
type
=
str
)
parser
.
add_argument
(
"serial_device_name"
,
help
=
"Serial port used, eg /dev/ttyUSB0"
,
type
=
str
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment