mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Port should be an integer
This commit is contained in:
parent
19797e1a29
commit
979999b886
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ class Runner(object):
|
|||
|
||||
try:
|
||||
# connect
|
||||
conn = self.connector.connect(actual_host, actual_port)
|
||||
conn = self.connector.connect(actual_host, int(actual_port))
|
||||
if delegate_to:
|
||||
conn.delegate = host
|
||||
|
||||
|
|
Loading…
Reference in a new issue