Skip to content
Snippets Groups Projects
Commit f6480d46 authored by Raphael Defosseux's avatar Raphael Defosseux
Browse files

fix(ci): typo

parent c5d68f37
No related branches found
No related tags found
1 merge request!175chore(ci): checking how CN5G containers stop
......@@ -99,7 +99,7 @@ def main() -> None:
ausfCpuY.append(float(result.group('cpu_usage')))
ausfMemY.append(float(result.group('memory_usage')))
if line.count('oai-udm') > 0:
esult = re.search(' (?P<cpu_usage>[0-9\.]+)% *(?P<memory_usage>[0-9\.]+)MiB / ', line)
result = re.search(' (?P<cpu_usage>[0-9\.]+)% *(?P<memory_usage>[0-9\.]+)MiB / ', line)
if result is not None:
udmTimeX.append(x * LOOP_INTERVAL)
udmCpuY.append(float(result.group('cpu_usage')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment