Skip to content

Commit

Permalink
update0910
Browse files Browse the repository at this point in the history
  • Loading branch information
jingyd66 committed Sep 10, 2024
1 parent 4b3d617 commit fca047e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handler/analyzer/analyze_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,13 @@ def __handle_from_node(self, node, local_store_parent_dir):
self.stdio.print(result_dict)
return result_dict

def count_and_find_max_queues(self,data, queue_limit):
def count_and_find_max_queues(self, data, queue_limit):
count = 0
max_queue_value = 0
for sublist in data:
for item in sublist:
for key, value in item.items():
if 'queue' in key: # queue
if 'queue' in key:
value = int(value)
if value > queue_limit:
count += 1
Expand Down

0 comments on commit fca047e

Please sign in to comment.