Skip to content

Commit 0e9c1a3

Browse files
committed
updating TaskVine parser to support version 2
1 parent 3207ad2 commit 0e9c1a3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

wfcommons/wfinstances/logs/taskvine.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,10 @@ def _construct_task_input_output_files(self) -> None:
234234
task_key = parts[1]
235235
if not task_key.startswith("T"):
236236
continue
237-
task_id = int(task_key[1:]) # Remove the T
237+
try:
238+
task_id = int(task_key[1:])
239+
except ValueError:
240+
continue
238241
if task_id not in self.known_task_ids:
239242
continue
240243
input_section = False

0 commit comments

Comments
 (0)