From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f194.google.com (mail-lj1-f194.google.com [209.85.208.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 30E204696C3 for ; Sat, 4 Apr 2020 19:15:41 +0300 (MSK) Received: by mail-lj1-f194.google.com with SMTP id f20so10169381ljm.0 for ; Sat, 04 Apr 2020 09:15:41 -0700 (PDT) From: Cyrill Gorcunov Date: Sat, 4 Apr 2020 19:15:17 +0300 Message-Id: <20200404161524.7466-2-gorcunov@gmail.com> In-Reply-To: <20200404161524.7466-1-gorcunov@gmail.com> References: <20200404161524.7466-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v11 1/8] box: fix bootstrap comment List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml We're not starting new master node but a new instance instead. The comment simply leftover from older modifications. Signed-off-by: Cyrill Gorcunov --- src/box/box.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/box/box.cc b/src/box/box.cc index 765d64678..0c15ba5e9 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -2414,7 +2414,7 @@ box_cfg_xc(void) local_recovery(&instance_uuid, &replicaset_uuid, &checkpoint->vclock); } else { - /* Bootstrap a new master */ + /* Bootstrap a new instance */ bootstrap(&instance_uuid, &replicaset_uuid, &is_bootstrap_leader); } -- 2.20.1