Skip to content

Commit

Permalink
update091116
Browse files Browse the repository at this point in the history
  • Loading branch information
jingyd66 committed Sep 11, 2024
1 parent a77b12e commit e68d5a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handler/analyzer/analyze_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def handle_from_node(node):
table_data.append(row)
queue_result = tabulate(table_data, headers=headers, tablefmt="pretty")
self.stdio.print(queue_result)
FileUtil.write_append(os.path.join(local_store_parent_dir), str(queue_result))
FileUtil.write_append(os.path.join(local_store_parent_dir, "result_details.txt"), str(queue_result))
return queue_result

def __handle_from_node(self, node, local_store_parent_dir):
Expand Down

0 comments on commit e68d5a3

Please sign in to comment.