Comparing version 4.1.0-beta to 4.1.0-beta2
@@ -792,5 +792,5 @@ 'use strict'; | ||
pending: false, | ||
debug: options.debug === undefined ? false : options.debug, | ||
keepalive : options.keepalive === undefined ? false : true, | ||
reconnDelay : options.reconnDelay === undefined ? 100 : options.reconnDelay | ||
debug: !!options.debug, | ||
keepalive : !!options.keepalive, | ||
reconnDelay : options.reconnDelay === undefined ? 500 : options.reconnDelay | ||
}) | ||
@@ -797,0 +797,0 @@ |
{ | ||
"name": "gohttp", | ||
"version": "4.1.0-beta", | ||
"version": "4.1.0-beta2", | ||
"description": "http & https client for HTTP/1.1 and HTTP/2", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
82377