Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
FofbTool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DG
FOFB
FofbTool
Commits
cfa0baf0
Commit
cfa0baf0
authored
1 year ago
by
BRONES Romain
Browse files
Options
Downloads
Patches
Plain Diff
fix: remove proxy getter for cellnode
* Do not separate those cases
parent
a83b2bf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FofbTool/Operation.py
+3
-3
3 additions, 3 deletions
FofbTool/Operation.py
FofbTool/Utils.py
+0
-3
0 additions, 3 deletions
FofbTool/Utils.py
with
3 additions
and
6 deletions
FofbTool/Operation.py
+
3
−
3
View file @
cfa0baf0
...
...
@@ -143,7 +143,7 @@ def stop_combpm(cellnodename):
The target fofbnode, ie
'
cellnode-c09
'
"""
prx
=
FofbTool
.
Utils
.
get_prx_from_
cell
nodename
(
cellnodename
)
prx
=
FofbTool
.
Utils
.
get_prx_from_nodename
(
cellnodename
)
if
prx
is
None
:
logger
.
error
(
"
Failed to stop ComBPM on {}
"
.
format
(
p
))
return
...
...
@@ -162,7 +162,7 @@ def start_combpm(cellnodename):
The target fofbnode, ie
'
cellnode-c09
'
"""
prx
=
FofbTool
.
Utils
.
get_prx_from_
cell
nodename
(
cellnodename
)
prx
=
FofbTool
.
Utils
.
get_prx_from_nodename
(
cellnodename
)
if
prx
is
None
:
logger
.
error
(
"
Failed to start ComBPM on {}
"
.
format
(
cellnodename
))
return
...
...
@@ -184,7 +184,7 @@ def ack_combpm(cellnodename):
The target fofbnode, ie
'
cellnode-c09
'
"""
prx
=
FofbTool
.
Utils
.
get_prx_from_
cell
nodename
(
cellnodename
)
prx
=
FofbTool
.
Utils
.
get_prx_from_nodename
(
cellnodename
)
if
prx
is
None
:
logger
.
error
(
"
Failed to start ComBPM on {}
"
.
format
(
cellnodename
))
return
...
...
This diff is collapsed.
Click to expand it.
FofbTool/Utils.py
+
0
−
3
View file @
cfa0baf0
...
...
@@ -224,9 +224,6 @@ def get_prx_from_nodename(nodename):
return
prx
# No more difference
get_prx_from_cellnodename
=
get_prx_from_nodename
def
stop_all_combpm
():
"""
Apply stop command on all Cellnodes.
...
...
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