chore: change the enable_pipelining default value
This commit is contained in:
parent
ebf4ed0270
commit
f0ddac63cb
|
@ -1406,7 +1406,7 @@ authenticator_examples() ->
|
||||||
pool_size => 8,
|
pool_size => 8,
|
||||||
connect_timeout => 5000,
|
connect_timeout => 5000,
|
||||||
request_timeout => 5000,
|
request_timeout => 5000,
|
||||||
enable_pipelining => true,
|
enable_pipelining => 100,
|
||||||
ssl => #{enable => false}
|
ssl => #{enable => false}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
# retry_interval = "10s"
|
# retry_interval = "10s"
|
||||||
# pool_type = "random"
|
# pool_type = "random"
|
||||||
# pool_size = 4
|
# pool_size = 4
|
||||||
# enable_pipelining = true
|
# enable_pipelining = 100
|
||||||
# ssl {
|
# ssl {
|
||||||
# enable = false
|
# enable = false
|
||||||
# keyfile = "{{ platform_etc_dir }}/certs/client-key.pem"
|
# keyfile = "{{ platform_etc_dir }}/certs/client-key.pem"
|
||||||
|
|
|
@ -228,7 +228,7 @@ info_example_basic(webhook, _) ->
|
||||||
retry_interval => <<"10s">>,
|
retry_interval => <<"10s">>,
|
||||||
pool_type => <<"random">>,
|
pool_type => <<"random">>,
|
||||||
pool_size => 4,
|
pool_size => 4,
|
||||||
enable_pipelining => true,
|
enable_pipelining => 100,
|
||||||
ssl => #{enable => false},
|
ssl => #{enable => false},
|
||||||
local_topic => <<"emqx_webhook/#">>,
|
local_topic => <<"emqx_webhook/#">>,
|
||||||
method => post,
|
method => post,
|
||||||
|
|
Loading…
Reference in New Issue