You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by nn...@apache.org on 2014/06/14 00:20:08 UTC

git commit: Fixed typo in health check grace periods field.

Repository: mesos
Updated Branches:
  refs/heads/master 517b7e3b7 -> 4c83662e1


Fixed typo in health check grace periods field.

Review: https://reviews.apache.org/r/22589


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4c83662e
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4c83662e
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/4c83662e

Branch: refs/heads/master
Commit: 4c83662e1be98492bb854ec203b4e726f9bfb7c7
Parents: 517b7e3
Author: Timothy Chen <tn...@apache.org>
Authored: Fri Jun 13 14:49:37 2014 -0700
Committer: Niklas Q. Nielsen <ni...@mesosphere.io>
Committed: Fri Jun 13 14:49:37 2014 -0700

----------------------------------------------------------------------
 include/mesos/mesos.proto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/4c83662e/include/mesos/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 833f70a..8c6933d 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -182,7 +182,7 @@ message HealthCheck {
   optional uint32 failures = 5 [default = 3];
 
   // Amount of time to allow failed health checks since launch.
-  optional double grade_period_seconds = 6 [default = 10.0];
+  optional double grace_period_seconds = 6 [default = 10.0];
 
   // Command health check.
   optional CommandInfo command = 7;