diff --git a/cubed/runtime/executors/local.py b/cubed/runtime/executors/local.py index 0a2bf57b..599702ec 100644 --- a/cubed/runtime/executors/local.py +++ b/cubed/runtime/executors/local.py @@ -60,9 +60,7 @@ def execute_dag( @execution_stats def run_func(input, func=None, config=None, name=None, compute_id=None): - print(f"{compute_id} {name}: running on {input}") - result = func(input, config=config) - return result + return func(input, config=config) def unpickle_and_call(f, inp, **kwargs):