Skip to content

Commit

Permalink
fix parsing local log file
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-gould committed Jan 8, 2024
1 parent deefc35 commit 64ccf16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion alto/commands/parse_monitoring_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ def execute(input_path, report_filename, plot_filename=None):
results = []
for i in range(len(log_paths)):
log_path = log_paths[i]
task, shard = get_task_and_shard(log_path) if is_dir else None

task, shard = get_task_and_shard(log_path) if is_dir else None, None
result = parse_log(
scheme + "://" + log_path,
details=generate_plot,
Expand Down

0 comments on commit 64ccf16

Please sign in to comment.