Removes default kwarg in iosxr_argument_spec for timeout (#21569)

This commit is contained in:
Ricardo Carrillo Cruz 2017-02-17 15:59:24 +01:00 committed by GitHub
commit c5452eef6f
2 changed files with 2 additions and 1 deletions

View file

@ -57,6 +57,7 @@ class ActionModule(_ActionModule):
pc.port = provider['port'] or self._play_context.port or 22
pc.remote_user = provider['username'] or self._play_context.connection_user
pc.password = provider['password'] or self._play_context.password
pc.timeout = provider['timeout'] or self._play_context.timeout
connection = self._shared_loader_obj.connection_loader.get('persistent', pc, sys.stdin)