From e014cb6026f5b5f0105a7db5f81ac16affd9a1a7 Mon Sep 17 00:00:00 2001 From: Anastasia Lubennikova Date: Mon, 30 May 2022 12:03:04 +0300 Subject: [PATCH] rename zenith.zenith_tenant to neon.tenant_id in test --- test_runner/batch_others/test_wal_acceptor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_runner/batch_others/test_wal_acceptor.py b/test_runner/batch_others/test_wal_acceptor.py index fd80313f94..35b7d9585a 100644 --- a/test_runner/batch_others/test_wal_acceptor.py +++ b/test_runner/batch_others/test_wal_acceptor.py @@ -431,8 +431,8 @@ def test_wal_backup(zenith_env_builder: ZenithEnvBuilder, storage_type: str): pg = env.postgres.create_start('test_safekeepers_wal_backup') # learn zenith timeline from compute - tenant_id = pg.safe_psql("show zenith.zenith_tenant")[0][0] - timeline_id = pg.safe_psql("show zenith.zenith_timeline")[0][0] + tenant_id = pg.safe_psql("show neon.tenant_id")[0][0] + timeline_id = pg.safe_psql("show neon.timeline_id")[0][0] pg_conn = pg.connect() cur = pg_conn.cursor()