From 8f3439fb3ef5216799c0704dd9ee0db78f1d362b Mon Sep 17 00:00:00 2001 From: Colin Sullivan Date: Mon, 18 Sep 2017 12:39:57 -0600 Subject: [PATCH] Add write_deadline configuration option [ci skip] --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 197b68bd..0a139bd2 100644 --- a/README.md +++ b/README.md @@ -247,6 +247,10 @@ max_control_line: 512 # maximum payload max_payload: 65536 + +# Duration the server can block on a socket write to a client. Exceeding the +# deadline will designate a client as a slow consumer. +write_deadline: "2s" ``` Inside configuration files, string values support the following escape characters: `\xXX, \t, \n, \r, \", \\`. Take note that when specifying directory paths in options such as `pid_file` and `log_file` on Windows, you'll need to escape backslashes, e.g. `log_file: "c:\\logging\\log.txt"`, or use unix style (`/`) path separators.