Skip to content

Commit

Permalink
Merge pull request #1303 from Friendseeker/increase-timeout
Browse files Browse the repository at this point in the history
Increase `onIncState` timeout to 10 minutes
  • Loading branch information
eed3si9n committed Dec 5, 2023
2 parents 3e0ea93 + a7877cf commit ead41be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class IncHandler(directory: Path, cacheDir: Path, scriptedLog: ManagedLogger, co
run: IncState => Future[Unit]
): IncState = {
val instance = i.getOrElse(onNewIncState(p))
try Await.result(run(instance), 60.seconds)
try Await.result(run(instance), 600.seconds)
catch {
case NonFatal(e) =>
instance.compilations.clear()
Expand Down

0 comments on commit ead41be

Please sign in to comment.