From 5a48e1c3d19e906be7d751da0e3d32b99721fe62 Mon Sep 17 00:00:00 2001 From: Oliver Parkinson Date: Tue, 3 May 2022 15:04:31 +0100 Subject: [PATCH] upped the DSL timeout to 10 seconds --- source/commands/danger-runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/commands/danger-runner.ts b/source/commands/danger-runner.ts index fced5d689..8efebb810 100644 --- a/source/commands/danger-runner.ts +++ b/source/commands/danger-runner.ts @@ -91,7 +91,7 @@ setTimeout(() => { process.exitCode = 1 process.exit(1) } -}, 1000) +}, 10000) // Start waiting on STDIN for the DSL getSTDIN().then(run(program as any))