We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e589ae3 commit 5ad0486Copy full SHA for 5ad0486
lib/definitions/retry.js
@@ -1,8 +1,9 @@
1
/**
2
- * Default exponential backoff configuration for retries.
+ * Default retry config for octokit retry plugin
3
*/
4
export const RETRY_CONF = {
5
// By default, Octokit does not retry on 404s.
6
// But we want to retry on 404s to account for replication lag.
7
doNotRetry: [400, 401, 403, 422],
8
+ retries: 3,
9
};
0 commit comments