From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp3.mail.ru (smtp3.mail.ru [94.100.179.58]) (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 B8FF245C304 for ; Wed, 2 Dec 2020 09:57:50 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Wed, 2 Dec 2020 09:57:45 +0300 Message-Id: <47b2763c1acc7c16dce155343d9fd8d4e450b730.1606892191.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] Add replication_connect_timeout to quorum.lua List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko , Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Added replication_connect_timeout to replication/quorum.lua script to decrease replication/quorum.test.lua test run time in 2 times which was 150 seconds before it. Before the patch this test run time was near to 'test-timeout' limit of 110 seconds and even to 120 seconds of 'no-output-timeout' limit. It caused test to fail because of it. --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/test_quorum_timeout test/replication/quorum.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/test/replication/quorum.lua b/test/replication/quorum.lua index 129e676e0..b4360d960 100644 --- a/test/replication/quorum.lua +++ b/test/replication/quorum.lua @@ -18,6 +18,7 @@ require('console').listen(os.getenv('ADMIN')) box.cfg({ listen = instance_uri(INSTANCE_ID); replication_timeout = TIMEOUT; + replication_connect_timeout = TIMEOUT * 100; replication_sync_lag = 0.01; replication_connect_quorum = 3; replication = { -- 2.25.1