From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f68.google.com (mail-lf1-f68.google.com [209.85.167.68]) (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 09AE34696C3 for ; Tue, 7 Apr 2020 18:15:27 +0300 (MSK) Received: by mail-lf1-f68.google.com with SMTP id j17so2664460lfe.7 for ; Tue, 07 Apr 2020 08:15:26 -0700 (PDT) From: Cyrill Gorcunov Date: Tue, 7 Apr 2020 18:14:54 +0300 Message-Id: <20200407151500.3410-2-gorcunov@gmail.com> In-Reply-To: <20200407151500.3410-1-gorcunov@gmail.com> References: <20200407151500.3410-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v12 1/8] box: fix bootstrap comment List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin Cc: tml We're not starting new master node but a new instance instead. The comment simply leftover from older modifications. Acked-by: Konstantin Osipov 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