Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Gu <[email protected]>
  • Loading branch information
tylergu committed Nov 21, 2023
1 parent 17c4655 commit e4670e2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion performance_measurement/measure_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,6 @@ def watch_system_events(event_stream, queue: Queue):
'''
for object in event_stream:
try:
logging.info("Event: %s %s" % (object['type'], object['object'].metadata.name))
ts = time.time()
queue.put((object, ts))
except (ValueError, AssertionError):
Expand Down
1 change: 0 additions & 1 deletion performance_measurement/metrics_api_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def start(self, apiclient: ApiClient, operator_name: str):
plural="pods",)
pod_metrics = {}
for pod in stats['items']:
print(pod['metadata']['name'])
pod_name = pod['metadata']['name']
if pod_name == "etcd-anvil-control-plane":
pod_metrics[pod_name] = pod
Expand Down

0 comments on commit e4670e2

Please sign in to comment.