Skip to content

Commit

Permalink
Remove concurrent GH requests from CI to improve its chances of finis…
Browse files Browse the repository at this point in the history
…hing.
  • Loading branch information
jyasskin committed Oct 19, 2023
1 parent f45e3ac commit 1e425e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanner/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { mean, quantile } from 'simple-statistics';
import config from './third_party/config.cjs';

const ghLimiter = new Bottleneck({
maxConcurrent: 2,
maxConcurrent: process.env.CI ? 1 : 2,
});

const Octokit = OctokitCore.plugin(paginateGraphql);
Expand Down

0 comments on commit 1e425e8

Please sign in to comment.