removes the default kwarg in ios_argument_spec for timeout (#21552)

Uses the configured timeout setting instead of the arg_spec

fixes #21520
This commit is contained in:
Peter Sprygada
2017-02-17 07:12:12 -05:00
committed by Ricardo Carrillo Cruz
parent a5d34f2ac2
commit b0abbb5f8b
2 changed files with 5 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ ios_argument_spec = {
'ssh_keyfile': dict(fallback=(env_fallback, ['ANSIBLE_NET_SSH_KEYFILE']), type='path'),
'authorize': dict(fallback=(env_fallback, ['ANSIBLE_NET_AUTHORIZE']), type='bool'),
'auth_pass': dict(fallback=(env_fallback, ['ANSIBLE_NET_AUTH_PASS']), no_log=True),
'timeout': dict(type='int', default=10),
'timeout': dict(type='int'),
'provider': dict(type='dict'),
}