Reduce concurrency for CI

This commit is contained in:
Radon Rosborough 2020-08-22 18:41:02 -06:00
parent 728ec07f9d
commit 3fa097dfc6
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import * as api from "./api";
import { LangConfig, langs } from "./langs"; import { LangConfig, langs } from "./langs";
const TIMEOUT_SECS = 5; const TIMEOUT_SECS = 5;
const CONCURRENCY = 2; const CONCURRENCY = 1;
function findPosition(str: string, idx: number) { function findPosition(str: string, idx: number) {
const lines = str.substring(0, idx).split("\n"); const lines = str.substring(0, idx).split("\n");