ソースを参照

Minor cleanup

Zed 4 年 前
コミット
4dab817521
1 ファイル変更0 行追加5 行削除
  1. 0 5
      src/http_pool.nim

+ 0 - 5
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