Persistent connections: These timeouts seem unused (#66267)

* These timeouts seem unused

* Add changelog
pull/66381/head
Nathaniel Case 5 years ago committed by GitHub
parent f695f40133
commit 0a3a81bd12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,5 @@
bugfixes:
- Fix httpapi timeout value to read from persistent_command_timeout as intended.
minor_changes:
- Remove timeout option from httpapi, netconf, & network_cli connections, as they were unused.

@ -85,14 +85,6 @@ options:
default: True
vars:
- name: ansible_httpapi_use_proxy
timeout:
type: int
description:
- Sets the connection time, in seconds, for communicating with the
remote device. This timeout is used as the default timeout value for
commands when issuing a command to the network CLI. If the command
does not return in timeout seconds, an error is generated.
default: 120
become:
type: boolean
description:
@ -265,7 +257,8 @@ class Connection(NetworkConnectionBase):
Sends the command to the device over api
'''
url_kwargs = dict(
timeout=self.get_option('timeout'), validate_certs=self.get_option('validate_certs'),
timeout=self.get_option('persistent_command_timeout'),
validate_certs=self.get_option('validate_certs'),
use_proxy=self.get_option("use_proxy"),
headers={},
)

@ -82,14 +82,6 @@ options:
- name: ANSIBLE_PRIVATE_KEY_FILE
vars:
- name: ansible_private_key_file
timeout:
type: int
description:
- Sets the connection time, in seconds, for communicating with the
remote device. This timeout is used as the default timeout value when
awaiting a response after issuing a call to a RPC. If the RPC
does not return in timeout seconds, an error is generated.
default: 120
look_for_keys:
default: True
description:

@ -75,14 +75,6 @@ options:
- name: ANSIBLE_PRIVATE_KEY_FILE
vars:
- name: ansible_private_key_file
timeout:
type: int
description:
- Sets the connection time, in seconds, for communicating with the
remote device. This timeout is used as the default timeout value for
commands when issuing a command to the network CLI. If the command
does not return in timeout seconds, an error is generated.
default: 120
become:
type: boolean
description:

Loading…
Cancel
Save