From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 76A6B20EE5 for ; Tue, 10 Sep 2019 16:21:22 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d-hHfA0WRwVI for ; Tue, 10 Sep 2019 16:21:22 -0400 (EDT) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 3893B206AF for ; Tue, 10 Sep 2019 16:21:22 -0400 (EDT) From: Vladislav Shpilevoy Subject: [tarantool-patches] [PATCH 1/1] Deprecate box.cfg.rows_per_wal option Date: Tue, 10 Sep 2019 22:25:05 +0200 Message-Id: <2c6d22f1065a2e14b6f875c80b46c37f38def7cb.1568147007.git.v.shpilevoy@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org Cc: alexander.turenko@tarantool.org It is deprecated since 1.10 version and is dropped in 2.3. --- Branch: https://github.com/tarantool/tarantool-python/tree/gerold103/deprecate-rows-per-wal Issue: https://github.com/tarantool/tarantool/issues/3762 unit/suites/box.lua | 1 - unit/suites/lib/tarantool_server.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/unit/suites/box.lua b/unit/suites/box.lua index f7c15ed..5f58d68 100644 --- a/unit/suites/box.lua +++ b/unit/suites/box.lua @@ -6,5 +6,4 @@ box.cfg{ listen = os.getenv("PRIMARY_PORT"), slab_alloc_arena = 0.1, pid_file = "box.pid", - rows_per_wal = 50 } diff --git a/unit/suites/lib/tarantool_server.py b/unit/suites/lib/tarantool_server.py index 291914d..f127171 100644 --- a/unit/suites/lib/tarantool_server.py +++ b/unit/suites/lib/tarantool_server.py @@ -46,8 +46,7 @@ class TarantoolServer(object): default_cfg = { "custom_proc_title": "\"tarantool-python testing\"", "slab_alloc_arena": 0.5, - "pid_file": "\"box.pid\"", - "rows_per_wal": 200} + "pid_file": "\"box.pid\""} @property def logfile_path(self): -- 2.20.1 (Apple Git-117)