From 519a2dbd327727cf6eed7bc693a148b48084a79e Mon Sep 17 00:00:00 2001 From: Stanislav Sokolko Date: Thu, 9 Feb 2017 12:28:14 +0500 Subject: [PATCH] Fix: type for HTTP Keepalive param --- pulsar/utils/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pulsar/utils/config.py b/pulsar/utils/config.py index aabfe4de..4359cb44 100644 --- a/pulsar/utils/config.py +++ b/pulsar/utils/config.py @@ -803,6 +803,7 @@ class HttpKeepAlive(Global): name = "http_keep_alive" flags = ["--http-keep-alive"] default = 70 + type = int desc = """\ Keep HTTP connections alive for this number of seconds """