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/22 03:11:28 UTC

[2/2] git commit: Fixed an incorrect configuration option.

Fixed an incorrect configuration option.


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

Branch: refs/heads/master
Commit: 299e9d37f81950f6b7a370a2dd05e529f1b744a5
Parents: ff08376
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Wed May 21 18:10:23 2014 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Wed May 21 18:11:18 2014 -0700

----------------------------------------------------------------------
 docs/high-availability.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/299e9d37/docs/high-availability.md
----------------------------------------------------------------------
diff --git a/docs/high-availability.md b/docs/high-availability.md
index d8a4dd3..b2a62c4 100644
--- a/docs/high-availability.md
+++ b/docs/high-availability.md
@@ -15,9 +15,9 @@ To put Mesos into high-availability mode:
 
 2. Provide the znode path to all masters, slaves, and framework schedulers as follows:
 
-    * Start the mesos-master binaries using the `--zk` flag, e.g. `--zk=zk://host1:port1/path,host2:port2/path...'  
+    * Start the mesos-master binaries using the `--zk` flag, e.g. `--zk=zk://host1:port1,host2:port2,.../path'
 
-    * Start the mesos-slave binaries with `--master=zk://host1:port1/path,host2:port2/path...`
+    * Start the mesos-slave binaries with `--master=zk://host1:port1,host2:port2,.../path`
 
     * Start any framework schedulers using the same `zk` path as in the last two steps. The SchedulerDriver must be constructed with this path, as shown in the [Framework Development Guide]( http://mesos.apache.org/documentation/latest/app-framework-development-guide/).