From eee4fd1fd2556ac9e4115c746ce785c7364a6f12 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Sat, 19 Nov 2016 16:27:12 +0100 Subject: [PATCH] Increase default timeout to 15min for log inactivity [ci skip] --- drone/agent/agent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/agent/agent.go b/drone/agent/agent.go index 94f41287f..30f8acaef 100644 --- a/drone/agent/agent.go +++ b/drone/agent/agent.go @@ -96,7 +96,7 @@ var AgentCmd = cli.Command{ EnvVar: "DRONE_TIMEOUT", Name: "timeout", Usage: "drone timeout due to log inactivity", - Value: time.Minute * 5, + Value: time.Minute * 15, }, cli.StringFlag{ EnvVar: "DRONE_FILTER",