From 4dab8175219b5ca94b7e4b8a76db1849383af6a8 Mon Sep 17 00:00:00 2001 From: Zed Date: Sun, 26 Dec 2021 06:55:58 +0100 Subject: [PATCH] Minor cleanup --- src/http_pool.nim | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/http_pool.nim b/src/http_pool.nim index 9fb8457..1c46225 100644 --- a/src/http_pool.nim +++ b/src/http_pool.nim @@ -6,11 +6,6 @@ type var maxConns {.threadvar.}: int -let keepAlive* = newHttpHeaders({ - "connection": "Keep-Alive", - "accept-encoding": "gzip" -}) - proc setMaxHttpConns*(n: int) = maxConns = n