mirror of https://github.com/yandex/odyssey.git
odissey: print nodelay as bool value
This commit is contained in:
parent
34412ef00d
commit
76450f2c0b
|
@ -848,7 +848,8 @@ void od_scheme_print(od_scheme_t *scheme, od_logger_t *logger, int routes_only)
|
||||||
od_log(logger, "config", NULL, NULL,
|
od_log(logger, "config", NULL, NULL,
|
||||||
"readahead %d", scheme->readahead);
|
"readahead %d", scheme->readahead);
|
||||||
od_log(logger, "config", NULL, NULL,
|
od_log(logger, "config", NULL, NULL,
|
||||||
"nodelay %d", scheme->nodelay);
|
"nodelay %d",
|
||||||
|
od_scheme_yes_no(scheme->nodelay));
|
||||||
od_log(logger, "config", NULL, NULL,
|
od_log(logger, "config", NULL, NULL,
|
||||||
"keepalive %d", scheme->keepalive);
|
"keepalive %d", scheme->keepalive);
|
||||||
if (scheme->client_max_set)
|
if (scheme->client_max_set)
|
||||||
|
|
Loading…
Reference in New Issue