From 484e4c14380dc10e76e4dd29fb452440c723e10d Mon Sep 17 00:00:00 2001 From: dmchen Date: Thu, 26 Dec 2024 00:53:39 +0000 Subject: [PATCH] fix/remove-resolve-fqdn-retry-fix-case --- tests/army/alter/test_alter_config.py | 5 ----- tests/script/tsim/show/basic.sim | 2 +- tests/script/tsim/valgrind/checkError1.sim | 2 +- tests/system-test/0-others/test_alter_config.py | 5 ----- tests/system-test/2-query/db.py | 2 +- 5 files changed, 3 insertions(+), 13 deletions(-) diff --git a/tests/army/alter/test_alter_config.py b/tests/army/alter/test_alter_config.py index 1b59293187..229f3150b3 100644 --- a/tests/army/alter/test_alter_config.py +++ b/tests/army/alter/test_alter_config.py @@ -310,11 +310,6 @@ class TDTestCase: "value": 1024 * 1024 * 20 * 10, "category": "global" }, - { - "name": "resolveFQDNRetryTime", - "value": 500, - "category": "global" - }, { "name": "syncHeartbeatInterval", "value": 3000, diff --git a/tests/script/tsim/show/basic.sim b/tests/script/tsim/show/basic.sim index 4c4f9da912..7569cd832c 100644 --- a/tests/script/tsim/show/basic.sim +++ b/tests/script/tsim/show/basic.sim @@ -230,7 +230,7 @@ endi sql_error show create stable t0; sql show variables; -if $rows != 94 then +if $rows != 93 then return -1 endi diff --git a/tests/script/tsim/valgrind/checkError1.sim b/tests/script/tsim/valgrind/checkError1.sim index b7b04a030f..64f9cdec1f 100644 --- a/tests/script/tsim/valgrind/checkError1.sim +++ b/tests/script/tsim/valgrind/checkError1.sim @@ -120,7 +120,7 @@ if $rows != 3 then endi sql show variables; -if $rows != 94 then +if $rows != 93 then return -1 endi diff --git a/tests/system-test/0-others/test_alter_config.py b/tests/system-test/0-others/test_alter_config.py index 14e77bb489..bdc3a0e835 100644 --- a/tests/system-test/0-others/test_alter_config.py +++ b/tests/system-test/0-others/test_alter_config.py @@ -207,11 +207,6 @@ class TDTestCase: "value": 1024 * 1024 * 20 * 10, "category": "global" }, - { - "name": "resolveFQDNRetryTime", - "value": 500, - "category": "global" - }, { "name": "syncElectInterval", "value": 50000, diff --git a/tests/system-test/2-query/db.py b/tests/system-test/2-query/db.py index 0c5c9773c8..66776e0a23 100644 --- a/tests/system-test/2-query/db.py +++ b/tests/system-test/2-query/db.py @@ -47,7 +47,7 @@ class TDTestCase: def case2(self): tdSql.query("show variables") - tdSql.checkRows(94) + tdSql.checkRows(93) for i in range(self.replicaVar): tdSql.query("show dnode %d variables like 'debugFlag'" % (i + 1))