Skip to content

Commit 64f8c52

Browse files
committed
Retry link check requests with 429 responses
1 parent ffcb10a commit 64f8c52

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/v3/gulpfile.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ async function checkPathAndExit(path, options, done) {
9191
recurse: options.recurse,
9292
silent: options.silent,
9393
markdown: options.markdown,
94+
retry: options.retry,
95+
concurrency: options.concurrency,
9496
};
9597

9698
try {
@@ -167,6 +169,8 @@ gulp.task('checkV3docs', gulp.series('build', done => {
167169
recurse: true,
168170
silent: true,
169171
markdown: true,
172+
retry: true,
173+
concurrency: 1,
170174
}, done);
171175
} catch (err) {
172176
done(err);
@@ -180,6 +184,8 @@ gulp.task('checkV2docs', done => {
180184
recurse: true,
181185
silent: true,
182186
markdown: true,
187+
retry: true,
188+
concurrency: 1,
183189
}, done);
184190
} catch (err) {
185191
done(err);

0 commit comments

Comments
 (0)