Skip to content

Commit 65fd888

Browse files
authored
better error message with dump (Netflix#2130)
* better error message with dump * only print on final failure
1 parent 4dc910a commit 65fd888

File tree

1 file changed

+23
-13
lines changed

1 file changed

+23
-13
lines changed

metaflow/cli.py

+23-13
Original file line numberDiff line numberDiff line change
@@ -282,21 +282,31 @@ def dump(obj, input_path, private=None, max_value_size=None, include=None, file=
282282
else:
283283
ds_list = list(datastore_set) # get all tasks
284284

285+
tasks_processed = False
285286
for ds in ds_list:
286-
echo(
287-
"Dumping output of run_id=*{run_id}* "
288-
"step=*{step}* task_id=*{task_id}*".format(
289-
run_id=ds.run_id, step=ds.step_name, task_id=ds.task_id
290-
),
291-
fg="magenta",
292-
)
293-
294-
if file is None:
295-
echo_always(
296-
ds.format(**kwargs), highlight="green", highlight_bold=False, err=False
287+
if ds is not None:
288+
tasks_processed = True
289+
echo(
290+
"Dumping output of run_id=*{run_id}* "
291+
"step=*{step}* task_id=*{task_id}*".format(
292+
run_id=ds.run_id, step=ds.step_name, task_id=ds.task_id
293+
),
294+
fg="magenta",
297295
)
298-
else:
299-
output[ds.pathspec] = ds.to_dict(**kwargs)
296+
297+
if file is None:
298+
echo_always(
299+
ds.format(**kwargs),
300+
highlight="green",
301+
highlight_bold=False,
302+
err=False,
303+
)
304+
else:
305+
output[ds.pathspec] = ds.to_dict(**kwargs)
306+
307+
if not tasks_processed:
308+
echo(f"No task(s) found for pathspec {input_path}", fg="red")
309+
return
300310

301311
if file is not None:
302312
with open(file, "wb") as f:

0 commit comments

Comments
 (0)