From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id E15A643D67A for ; Sun, 13 Oct 2019 18:46:57 +0300 (MSK) From: Vladislav Shpilevoy Date: Sun, 13 Oct 2019 17:51:53 +0200 Message-Id: <955fd35a4bfc91a0d17f3ccbfc7b0ec8bc50715a.1570980933.git.v.shpilevoy@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/1] test: replication/misc cleanup box.cfg.replication List-Id: Tarantool development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org Cc: tarantool-patches@freelists.org, kyukhin@tarantool.org In patch c6bea65f8ef5f6c737cf70c0127189d0ebcbc36e I added a bug - replication/misc leaves a bad value in box.cfg.replication. Before that patch the test was resetting this to empty replication. In my patch I forgot about that, and left there the value {box.cfg.listen, "12345"} This patch cleans it up. Follow up #3760 --- Branch: https://github.com/tarantool/tarantool/tree/gerold103/gh-3760-follow-up-flaky-test Issue: https://github.com/tarantool/tarantool/issues/3760 test/replication/misc.result | 2 +- test/replication/misc.test.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/replication/misc.result b/test/replication/misc.result index 3905cc49e..f7098aac8 100644 --- a/test/replication/misc.result +++ b/test/replication/misc.result @@ -842,7 +842,7 @@ box.info.status - running ... box.cfg{ \ - replication = replication, \ + replication = {}, \ replication_connect_quorum = replication_connect_quorum, \ replication_connect_timeout = replication_connect_timeout \ } diff --git a/test/replication/misc.test.lua b/test/replication/misc.test.lua index 696564f94..c4ddbdb47 100644 --- a/test/replication/misc.test.lua +++ b/test/replication/misc.test.lua @@ -342,7 +342,7 @@ box.cfg{ \ box.cfg{replication = {'localhost:12345'}} box.info.status box.cfg{ \ - replication = replication, \ + replication = {}, \ replication_connect_quorum = replication_connect_quorum, \ replication_connect_timeout = replication_connect_timeout \ } -- 2.21.0 (Apple Git-122)