@lblod/mu-auth-sudo 0.6.1 → 0.6.2

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.
package/dist/auth-sudo.js CHANGED
@@ -170,7 +170,7 @@ function mayRetry(error, attempt) {
170
170
 
171
171
  function nextAttemptTimeout(attempt) {
172
172
  //expected to be milliseconds
173
- return Math.round(Math.exp(RETRY_TIMEOUT_INCREMENT_FACTOR * attempt + 10));
173
+ return Math.round(RETRY_TIMEOUT_INCREMENT_FACTOR * Math.exp(attempt + 10));
174
174
  }
175
175
 
176
176
  var _exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lblod/mu-auth-sudo",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "this package provides an alternative sparql client for the mu-javascript-template that has sudo rights.",
5
5
  "main": "dist/auth-sudo.js",
6
6
  "scripts": {