From 4d15d54d6b466fbe433b14f7a927af28c7355a17 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 7 Apr 2021 14:11:58 -0700 Subject: [PATCH] Revert "Revert "fixed cmd doc to pass current master node in master.peers"" This reverts commit ccba297fb8765c9921aee4e7c221fa7ca0c02349. --- Failover-Master-Server.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Failover-Master-Server.md b/Failover-Master-Server.md index 6d8eb6b..fe9353a 100644 --- a/Failover-Master-Server.md +++ b/Failover-Master-Server.md @@ -10,11 +10,11 @@ This section is a quick way to start 3 master servers and 3 volume servers. All ```bash weed server -master.port=9333 -dir=./1 -volume.port=8080 \ - -master.peers=localhost:9333,localhost:9334,localhost:9335 + -master.peers=localhost:9334,localhost:9335 weed server -master.port=9334 -dir=./2 -volume.port=8081 \ - -master.peers=localhost:9333,localhost:9334,localhost:9335 + -master.peers=localhost:9333,localhost:9335 weed server -master.port=9335 -dir=./3 -volume.port=8082 \ - -master.peers=localhost:9333,localhost:9334,localhost:9335 + -master.peers=localhost:9333,localhost:9334 ``` ## How it works