Skip to content

Commit

Permalink
fix: use @adobe/aio-lib-networking@2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron committed Aug 22, 2022
1 parent 997b50b commit b1a43c5
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 52 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"generate-docs": "jsdoc2md -t ./docs/readme_template.md ./src/index.js > README.md"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.0",
"@adobe/aio-lib-core-errors": "^3.1.1",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-networking": "^2.0.0",
"@adobe/aio-lib-state": "^2.0.1",
"cross-fetch": "^3.0.4",
"crypto-js": "^4.0.0",
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const loggerNamespace = '@adobe/aio-lib-events'
const logger = require('@adobe/aio-lib-core-logging')(loggerNamespace,
{ level: process.env.LOG_LEVEL })
const { codes } = require('./SDKErrors')
const fetchRetryClient = require('@adobe/aio-lib-core-networking')
const { HttpExponentialBackoff } = require('@adobe/aio-lib-core-networking')
const fetchRetryClient = new HttpExponentialBackoff()

const EventsConsumerFromJournal = require('./journalling')

Expand Down
Loading

0 comments on commit b1a43c5

Please sign in to comment.