From fead3d3e279176b6658fb23ed15144467c1864ee Mon Sep 17 00:00:00 2001 From: Tom Grigg Date: Thu, 2 Sep 2021 10:33:08 -0700 Subject: [PATCH] build: increase timeout for downloading inkuire.js from GitHub --- project/Build.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index 9f2e1bc973d7..95398e014eee 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -1334,7 +1334,7 @@ object Build { val downloadProcess = (new java.net.URL(inkuireLink) #> inkuireDestinationFile).run() val result: Future[Int] = Future(blocking(downloadProcess.exitValue())) val res = try { - Await.result(result, duration.Duration(20, "sec")) + Await.result(result, duration.Duration(60, "sec")) } catch { case _: TimeoutException => downloadProcess.destroy()