项目作者: luispabon

项目描述 :
Retry superagent requests for common hangups
高级语言: JavaScript
项目地址: git://github.com/luispabon/superagent-retry-delay.git
创建时间: 2017-07-19T11:34:11Z
项目社区:https://github.com/luispabon/superagent-retry-delay

开源协议:MIT License

下载


superagent-retry-delay

Extends the node version of superagent’s Request, adds a .retry method
to add retrying logic to the request. Calling this will retry the request however many additional times you’d like after
a specified delay in miliseconds.

It will retry on any error condition, except for the list of response codes optionally supplied.

v2 relies on superagent’s internal retry mechanism for retrying, added on superagent 3.5. Use v1 otherwise.

This library is based on superagent-retry and
extends superagent

Usage

The main addition over superagent is the retry function:

  1. /**
  2. * @param {Number} retries
  3. * @param {Number[] || Number} delays
  4. * @param {Number[]} allowedStatuses
  5. * @param {retryCallback} retryCallback
  6. * @callback retryCallback
  7. * @return {retry}
  8. */
  9. function retry (retries, delays, allowedStatuses, retryCallback) {}

Function params:

  • retries: max number of retries to attempt
  • delays: delay between retries, in miliseconds. It can be either:
    • a single number: delay between all retries
    • a list of numbers: delays between the first few retries, in order given. If there are more retries than
      numbers on this list, any subsequent retries will be delayed by the last number on the list.
  • allowedStatuses: list of HTTP statuses that aren’t considered a failure by which we need to retry
  • retryCallback: this callback takes two arguments, the err, and the response object, and must performs an evaluation on it
    that must return either true or false. Returning false stops any further retries.

Examples

  1. // With superagent
  2. const superagent = require('superagent');
  3. require('superagent-retry-delay')(superagent);
  4. superagent
  5. .get('https://segment.io')
  6. .retry(2, 5000, [401, 404]) // retry twice before responding, wait 5 seconds between failures, do not retry when response is success, or 401 or 404
  7. .end(onresponse);
  8. superagent
  9. .get('https://segment.io')
  10. .retry(3, [1000, 3000, 10000], [401, 404]) // retry three times before responding, first wait 1 second, then 3 seconds, and finally 10 seconds between failures, do not retry when response is success, or 401 or 404
  11. .end(onresponse);
  12. superagent
  13. .get('https://segment.io')
  14. .retry(5, [1000, 3000], [401, 404]) // retry five times before responding, first wait 1 second, and then wait 3 seconds between all other failures, do not retry when response is success, or 401 or 404
  15. .end(onresponse);
  16. superagent
  17. .get('https://segment.io')
  18. .retry(5, [1000, 3000], [], (err, res) => {
  19. if (res.status === 400 && res.text.includes('banana')) {
  20. return true
  21. }
  22. return false;
  23. }) // retry five times before responding, first wait 1 second, and then wait 3 seconds between all other failures, retry if code is 400 and body contains banana
  24. .end(onresponse);
  25. function onresponse (err, res) {
  26. console.log(res.status, res.headers);
  27. console.log(res.body);
  28. }
  1. // With supertest
  2. const superagent = require('superagent');
  3. require('superagent-retry-delay')(superagent);
  4. const supertest = require('supertest');

Mocha users

Ensure your mocha timeout for tests (default is 2000ms) is long enough to accommodate for all possible retries,
including the specified delays.

Retrying Cases

Currently the retrying logic checks for any error, but it will allow a list of status codes to avoid retrying - this is
handy if you’re testing say 404’s.

License

See MIT License document.