Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nrm
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
nrm
Commits
c7e2b6fb
Commit
c7e2b6fb
authored
Apr 24, 2019
by
Valentin Reis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bug] fixes the default name of the perf wrapper in the daemon code.
parent
7f3dd187
Pipeline
#6525
passed with stages
in 4 minutes and 37 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
bin/nrmd
bin/nrmd
+2
-2
nrm/containers.py
nrm/containers.py
+1
-1
No files found.
bin/nrmd
View file @
c7e2b6fb
...
...
@@ -42,7 +42,7 @@ def main(argv=None):
defaults
=
{
"nrm_log"
:
"/tmp/nrm.log"
,
"hwloc"
:
"hwloc"
,
"perf"
:
"perf"
,
"argo_perf_wrapper"
:
"
argo-perf-
wrapper"
,
"argo_perf_wrapper"
:
"
nrm-perf
wrapper"
,
"argo_nodeos_config"
:
"argo_nodeos_config"
,
"pmpi_lib"
:
"/usr/lib/libnrm-pmpi.so"
,
}
...
...
@@ -100,7 +100,7 @@ def main(argv=None):
"necessary. Override default with the PERFWRAPPER "
"environment variable."
,
default
=
os
.
environ
.
get
(
'ARGO_PERF_WRAPPER'
,
'
argo-perf-
wrapper'
))
'
nrm-perf
wrapper'
))
args
=
parser
.
parse_args
(
remaining_argv
)
nrm
.
daemon
.
runner
(
config
=
args
)
return
(
0
)
...
...
nrm/containers.py
View file @
c7e2b6fb
...
...
@@ -28,7 +28,7 @@ class ContainerManager(object):
container runtime underneath."""
def
__init__
(
self
,
container_runtime
,
rm
,
perfwrapper
=
"
argo-perf-
wrapper"
,
perfwrapper
=
"
nrm-perf
wrapper"
,
linuxperf
=
"perf"
,
pmpi_lib
=
"/usr/lib/libnrm-pmpi.so"
):
self
.
linuxperf
=
linuxperf
...
...
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