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

@ -38,7 +38,7 @@ iosxr_argument_spec = {
'username': dict(fallback=(env_fallback, ['ANSIBLE_NET_USERNAME'])),
'password': dict(fallback=(env_fallback, ['ANSIBLE_NET_PASSWORD']), no_log=True),
'ssh_keyfile': dict(fallback=(env_fallback, ['ANSIBLE_NET_SSH_KEYFILE']), type='path'),
'timeout': dict(type='int', default=10),
'timeout': dict(type='int'),
'provider': dict(type='dict')
}