Skip to content

Commit

Permalink
Fix map tasks (flyteorg#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katrina Rogan authored Mar 24, 2021
1 parent d54b42f commit f458c65
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions flytekit/bin/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,28 +411,12 @@ def fast_execute_task_cmd(additional_distribution, dest_dir, task_execute_cmd):
"resolver-args", type=_click.UNPROCESSED, nargs=-1,
)
def map_execute_task_cmd(
task_module,
task_name,
inputs,
output_prefix,
raw_output_data_prefix,
max_concurrency,
test,
resolver,
resolver_args,
inputs, output_prefix, raw_output_data_prefix, max_concurrency, test, resolver, resolver_args,
):
_click.echo(_utils.get_version_message())

_execute_map_task(
task_module,
task_name,
inputs,
output_prefix,
raw_output_data_prefix,
max_concurrency,
test,
resolver,
resolver_args,
inputs, output_prefix, raw_output_data_prefix, max_concurrency, test, resolver, resolver_args,
)


Expand Down

0 comments on commit f458c65

Please sign in to comment.