Skip to content

Commit

Permalink
Pass query string to superagent in retryRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
lox committed Feb 28, 2024
1 parent e385eab commit 6c82cf6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/chartmogul/util/retry.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ module.exports = function retryRequest (retries, options, cb) {
const request = superagent(options.method || 'get', requestUrl)
.auth(options.auth.user, options.auth.pass)
.set(options.headers)
.query(options.qs)
.send(options.body);

request.end((err, res) => {
Expand Down

0 comments on commit 6c82cf6

Please sign in to comment.