Comparing version 0.18.0 to 0.18.1
@@ -91,3 +91,3 @@ /** | ||
ctx.lockWaitTime = self._opts.lockwaittime || DEFAULT_LOCK_WAIT_TIME; | ||
ctx.lockWaitTimeout = utils.parseDuration(ctx.lockWaitTime) + 100; | ||
ctx.lockWaitTimeout = utils.parseDuration(ctx.lockWaitTime) + 1000; | ||
ctx.lockRetryTime = utils.parseDuration(self._opts.lockretrytime || DEFAULT_LOCK_RETRY_TIME); | ||
@@ -312,3 +312,3 @@ ctx.state = 'session'; | ||
if (time && new Date() - time > ttl) { | ||
if (time && new Date() - time > ttl + 1000) { | ||
monitor.end(); | ||
@@ -315,0 +315,0 @@ } |
{ | ||
"name": "consul", | ||
"version": "0.18.0", | ||
"version": "0.18.1", | ||
"description": "Consul client", | ||
@@ -5,0 +5,0 @@ "main": "./lib", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99764