Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZhouShuya
OpenXG-RAN
Commits
20ee6ca6
Commit
20ee6ca6
authored
Sep 08, 2020
by
Remi Hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing logging and html rendering
parent
e3264917
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ci-scripts/cls_cots_ue.py
ci-scripts/cls_cots_ue.py
+1
-1
ci-scripts/ran.py
ci-scripts/ran.py
+1
-1
No files found.
ci-scripts/cls_cots_ue.py
View file @
20ee6ca6
...
...
@@ -102,7 +102,7 @@ class CotsUe:
logging
.
error
(
"ATTENTION : Could not toggle to : "
+
target_state_str
)
logging
.
error
(
"Current state is : "
+
str
(
current_state
))
else
:
print
(
"Airplane mode is already "
+
target_state_str
)
logging
.
info
(
"Airplane mode is already "
+
target_state_str
)
mySSH
.
command
(
'adb kill-server'
,
'\$'
,
5
)
mySSH
.
close
()
#ue id is NOT in the dictionary
...
...
ci-scripts/ran.py
View file @
20ee6ca6
...
...
@@ -990,5 +990,5 @@ class RANManagement():
logging
.
debug
(
systemTime
)
logging
.
debug
(
maxPhyMemUsage
)
logging
.
debug
(
nbContextSwitches
)
self
.
runtime_stats
=
runTime
+
'
\n
'
+
userTime
+
'
\n
'
+
systemTime
+
'
\n
'
+
maxPhyMemUsage
+
'
\n
'
+
nbContextSwitches
self
.
runtime_stats
=
'<pre>'
+
runTime
+
'
\n
'
+
userTime
+
'
\n
'
+
systemTime
+
'
\n
'
+
maxPhyMemUsage
+
'
\n
'
+
nbContextSwitches
+
'</pre>'
return
global_status
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