flashheart
Advanced tools
Comparing version 2.8.0 to 2.8.1
@@ -75,3 +75,4 @@ var _ = require('lodash'); | ||
function createStaleKeyObject(url, opts, doNotVary) { | ||
return _.extend({}, createKeyObject(url, opts, doNotVary), { stale: true }); | ||
var key = createKeyObject(url, opts, doNotVary); | ||
return _.extend({}, key, { id: 'stale:' + key.id }); | ||
} | ||
@@ -78,0 +79,0 @@ |
{ | ||
"name": "flashheart", | ||
"version": "2.8.0", | ||
"version": "2.8.1", | ||
"description": "A fully-featured REST client built for ease-of-use and resilience", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -43,4 +43,3 @@ var async = require('async'); | ||
segment: 'flashheart:' + require('../package').version, | ||
id: url, | ||
stale: true | ||
id: 'stale:' + url | ||
}; | ||
@@ -47,0 +46,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
281572