diff options
author | Ganesh Nalawade <ganesh634@gmail.com> | 2019-01-21 10:50:52 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 10:50:52 +0530 |
commit | 1b6228fa10f98f279102cef6076bd021c889acde (patch) | |
tree | c3a97c6feb1f68379959a58b3a89f6f341171875 /examples | |
parent | 9b3e74fe91429f0a83fb889e964b70a12dbad2d2 (diff) | |
download | ansible-1b6228fa10f98f279102cef6076bd021c889acde.tar.gz |
Increase persistent command_timeout default value (#51056)
* Increase persistent command_timeout default value
* Increase command_timeout default value from 10 to 30 sec
to reduce frequent timeout issue for network connection
types (netconf/network_cli/httpapi/napalm)
* Fix review comments
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index cc1f9c757a..5a2dfb582d 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -435,18 +435,11 @@ # expires, the connection is shutdown. The default value is 30 seconds. #connect_timeout = 30 -# Configures the persistent connection retry timeout. This value configures the -# the retry timeout that ansible-connection will wait to connect -# to the local domain socket. This value must be larger than the -# ssh timeout (timeout) and less than persistent connection idle timeout (connect_timeout). -# The default value is 15 seconds. -#connect_retry_timeout = 15 - # The command timeout value defines the amount of time to wait for a command # or RPC call before timing out. The value for the command timeout must # be less than the value of the persistent connection idle timeout (connect_timeout) -# The default value is 10 second. -#command_timeout = 10 +# The default value is 30 second. +#command_timeout = 30 [accelerate] #accelerate_port = 5099 |