mirror of
https://github.com/processone/ejabberd
synced 2025-10-06 03:50:15 +02:00
Set 'max_fsm_queue' default value (back) to 10000
The default value for the 'max_fsm_queue' option was set to 10000 in commit79685da90b
, and that value is still documented to be the default. It was (probably unintentionally) changed to 5000 in commit03de853e4f
. It makes sense to keep it larger than the value of mod_stream_mgmt's 'max_ack_queue' option.
This commit is contained in:
parent
6d13120e69
commit
865074603c
4 changed files with 4 additions and 4 deletions
|
@ -256,7 +256,7 @@ listen_opt_type(max_payload_size) ->
|
|||
econf:pos_int(infinity).
|
||||
|
||||
listen_options() ->
|
||||
[{max_fsm_queue, 5000},
|
||||
[{max_fsm_queue, 10000},
|
||||
{max_payload_size, infinity},
|
||||
{tls, false},
|
||||
{tls_verify, false}].
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue