Skip to content

Commit

Permalink
Merge pull request saltstack#20111 from Trax-air/fix-ssh-port
Browse files Browse the repository at this point in the history
ssh_port should be an int in deploy_kwargs.
  • Loading branch information
thatch45 committed Jan 27, 2015
2 parents 291073c + f3daf2c commit d54f3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/cloud/clouds/msazure.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def wait_for_hostname():
deploy_kwargs = {
'opts': __opts__,
'host': hostname,
'port': ssh_port,
'port': int(ssh_port),
'username': ssh_username,
'password': ssh_password,
'script': deploy_script,
Expand Down

0 comments on commit d54f3b5

Please sign in to comment.