We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd9802b commit 6284084Copy full SHA for 6284084
src/main/scala/codacy/dockerApi/DockerEngine.scala
@@ -21,7 +21,7 @@ abstract class DockerEngine(Tool: Tool) {
21
22
lazy val timeout = Option(System.getProperty("timeout")).flatMap { case rawDuration =>
23
Try(Duration(rawDuration)).toOption.collect { case d: FiniteDuration => d }
24
- }.getOrElse(30.minutes)
+ }.getOrElse(10.minutes)
25
26
lazy val isDebug = Option(System.getProperty("debug")).flatMap { case rawDebug =>
27
Try(rawDebug.toBoolean).toOption
0 commit comments