@blazedpath/commons 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,13 +32,8 @@ module.exports = class SecureUrlService {
32
32
  const limit = parseInt(timeoutMs, 10);
33
33
  const isValid = diff <= limit;
34
34
  if (!isValid) {
35
- <<<<<<< HEAD:blazedpath-commons/blz-security/secureUrlService.js
36
- this.logger.error(`The token has expired. path:${path} timeout:${timeout} time: ${time}`)
37
- throw new Exception("The token has expired.", 'SecureUrlError', 408);
38
- =======
39
35
  this.logger.error(`The token has expired. path:${path} requestTime:${requestTime} now: ${now} limit:${limit} diff:${diff}`)
40
36
  throw new Exception("The token has expired.", 'SecureUrlError', 410);
41
- >>>>>>> develop:blz-commons/private-sources/blz-security/secureUrlService.js
42
37
  }
43
38
  }
44
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blazedpath/commons",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "commos library for blazedpath applications",
5
5
  "main": "index.js",
6
6
  "types": "dist/index.d.ts",