You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2014/05/15 00:01:00 UTC

[2/2] git commit: Changed 'registry' flag default to 'replicated_log'.

Changed 'registry' flag default to 'replicated_log'.

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


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

Branch: refs/heads/master
Commit: 3aebb23c0d5588ff3accb778528673851ee0c93f
Parents: 2fa6f83
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Tue May 13 15:23:24 2014 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Wed May 14 15:00:41 2014 -0700

----------------------------------------------------------------------
 src/master/flags.hpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/3aebb23c/src/master/flags.hpp
----------------------------------------------------------------------
diff --git a/src/master/flags.hpp b/src/master/flags.hpp
index 3e23eca..db21ab0 100644
--- a/src/master/flags.hpp
+++ b/src/master/flags.hpp
@@ -56,11 +56,13 @@ public:
         "work_dir",
         "Where to store the persistent information stored in the Registry.");
 
+    // TODO(bmahler): Consider removing 'in_memory' as it was only
+    // used before 'replicated_log' was implemented.
     add(&Flags::registry,
         "registry",
         "Persistence strategy for the registry;\n"
-        "available options are 'in_memory', 'replicated_log'.",
-        "in_memory");
+        "available options are 'replicated_log', 'in_memory' (for testing).",
+        "replicated_log");
 
     // TODO(vinod): Instead of specifying the quorum size consider
     // specifying the number of masters or the list of masters.