mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
server_epoll: Increase write timeout
7 may be too low for some slow machines and/or networks
This commit is contained in:
parent
d21439da5c
commit
160fd37742
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ local _ENV = nil;
|
||||||
|
|
||||||
local default_config = { __index = {
|
local default_config = { __index = {
|
||||||
read_timeout = 14 * 60;
|
read_timeout = 14 * 60;
|
||||||
write_timeout = 7;
|
write_timeout = 60;
|
||||||
tcp_backlog = 128;
|
tcp_backlog = 128;
|
||||||
accept_retry_interval = 10;
|
accept_retry_interval = 10;
|
||||||
read_retry_delay = 1e-06;
|
read_retry_delay = 1e-06;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue