1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Convert port value to integer (#25939)

Fixes #25175

convert port value to integer explicitly
This commit is contained in:
Ganesh Nalawade 2017-08-01 22:57:04 +05:30 committed by Chris Alfonso
parent a25c6b9478
commit 448c461940

View file

@ -60,10 +60,10 @@ class ActionModule(_ActionModule):
if self._task.action == 'junos_netconf':
pc.connection = 'network_cli'
pc.port = provider['port'] or self._play_context.port or 22
pc.port = int(provider['port'] or self._play_context.port or 22)
else:
pc.connection = 'netconf'
pc.port = provider['port'] or self._play_context.port or 830
pc.port = int(provider['port'] or self._play_context.port or 830)
pc.remote_user = provider['username'] or self._play_context.connection_user
pc.password = provider['password'] or self._play_context.password