diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-07-02 18:19:00 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-07-02 18:19:00 +0300 |
commit | 0366bfad6de29d5b40894233f6c5be7d08118826 (patch) | |
tree | 894661a7a1caabc68cb313500feaea3bbda74357 | |
parent | 145d895430e5634bca2a83377fc19da557f9ae5c (diff) | |
download | unit-0366bfad6de29d5b40894233f6c5be7d08118826.tar.gz unit-0366bfad6de29d5b40894233f6c5be7d08118826.tar.bz2 |
Fixed error message about "spare" value.
-rw-r--r-- | src/nxt_conf_validation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf_validation.c b/src/nxt_conf_validation.c index f21507d4..0b740c10 100644 --- a/src/nxt_conf_validation.c +++ b/src/nxt_conf_validation.c @@ -659,7 +659,7 @@ nxt_conf_vldt_processes(nxt_conf_validation_t *vldt, nxt_conf_value_t *value, if (proc.max < proc.spare) { return nxt_conf_vldt_error(vldt, "The \"spare\" number must be " - "lower than \"max\"."); + "less than or equal to \"max\"."); } if (proc.idle_timeout < 0) { |