Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1079 from mesosphere/task-launch-timeout-default
Browse files Browse the repository at this point in the history
Change default for task_launch_timeout and document deprecation.
  • Loading branch information
ConnorDoyle committed Jan 22, 2015
2 parents 77e9b64 + 00210f5 commit 0619dc2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/scala/mesosphere/marathon/MarathonConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ trait MarathonConf extends ScallopConf with ZookeeperConf {
default = None)

lazy val taskLaunchTimeout = opt[Long]("task_launch_timeout",
descr = "Time, in milliseconds, to wait for a task to enter " +
"the TASK_RUNNING state before killing it",
default = Some(60000L)) // 60 seconds
descr = "(deprecated) Time, in milliseconds, to wait for a task to enter " +
"the TASK_RUNNING state before killing it. NOTE: this is a temporary " +
"fix for MESOS-1922. This option will be removed in a later release.",
default = Some(300000L)) // 300 seconds (5 minutes)

lazy val reconciliationInitialDelay = opt[Long]("reconciliation_initial_delay",
descr = "This is the length of time, in milliseconds, before Marathon " +
Expand Down

0 comments on commit 0619dc2

Please sign in to comment.