Skip to content

Commit

Permalink
Adding destination for client address.
Browse files Browse the repository at this point in the history
  • Loading branch information
alxmrs committed Sep 20, 2022
1 parent 3c4204d commit 41623ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/runners/dask/dask_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _parse_timeout(candidate):

@classmethod
def _add_argparse_args(cls, parser: argparse.ArgumentParser) -> None:
parser.add_argument('--dask_client_address', type=str, default=None,
parser.add_argument('--dask_client_address', dest='address', type=str, default=None,
help='Address of a dask Scheduler server. Will '
'default to a `dask.LocalCluster()`.')
parser.add_argument('--dask_connection_timeout', dest='timeout',
Expand Down

0 comments on commit 41623ec

Please sign in to comment.