Comparing version 1.3.50 to 1.3.51
@@ -329,3 +329,3 @@ let NATS = require('nats') | ||
delete self.chunks[ key ] | ||
callbackFn( new Error( `Response timeout to ${entity}:${message}` ) ) | ||
callbackFn( BaseErrors.RequestTimeout( { entity, message, tolerance: self.tolerance } ) ) | ||
} | ||
@@ -332,0 +332,0 @@ } |
{ | ||
"name": "darcon", | ||
"version": "1.3.50", | ||
"version": "1.3.51", | ||
"description": "Simple Messaging/Service Bus for node entities over NatsIO", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -76,2 +76,8 @@ const { inherits } = require('util') | ||
message: 'No {service} is present at {entity}' | ||
} ), | ||
RequestTimeout: ErrorCreator( { | ||
errorCode: 66005, | ||
errorName: 'RequestTimeout', | ||
message: 'Response {tolerance}ms timeout to {entity}:{message}' | ||
} ) | ||
@@ -78,0 +84,0 @@ |
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
64951
1548