Skip to content

Commit

Permalink
[hailctl] fix parsing in hailctl hdinsight start (#14110)
Browse files Browse the repository at this point in the history
CHANGELOG: Fix `hailctl hdinsight start`, which has been broken since
0.2.118.

The shift to typer/click accidentally converted this parameter from a
string to an int.
  • Loading branch information
danking authored Dec 21, 2023
1 parent 39c3cda commit 08909ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hail/python/hailtop/hailctl/hdinsight/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def start(
'--location',
location,
'--workernode-count',
num_workers,
str(num_workers),
'--ssh-password',
sshuser_password,
'--ssh-user',
Expand Down

0 comments on commit 08909ac

Please sign in to comment.