fix/remove-resolve-fqdn-retry-fix-case
This commit is contained in:
parent
20a0ae7905
commit
484e4c1438
|
@ -310,11 +310,6 @@ class TDTestCase:
|
||||||
"value": 1024 * 1024 * 20 * 10,
|
"value": 1024 * 1024 * 20 * 10,
|
||||||
"category": "global"
|
"category": "global"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "resolveFQDNRetryTime",
|
|
||||||
"value": 500,
|
|
||||||
"category": "global"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "syncHeartbeatInterval",
|
"name": "syncHeartbeatInterval",
|
||||||
"value": 3000,
|
"value": 3000,
|
||||||
|
|
|
@ -230,7 +230,7 @@ endi
|
||||||
sql_error show create stable t0;
|
sql_error show create stable t0;
|
||||||
|
|
||||||
sql show variables;
|
sql show variables;
|
||||||
if $rows != 94 then
|
if $rows != 93 then
|
||||||
return -1
|
return -1
|
||||||
endi
|
endi
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ if $rows != 3 then
|
||||||
endi
|
endi
|
||||||
|
|
||||||
sql show variables;
|
sql show variables;
|
||||||
if $rows != 94 then
|
if $rows != 93 then
|
||||||
return -1
|
return -1
|
||||||
endi
|
endi
|
||||||
|
|
||||||
|
|
|
@ -207,11 +207,6 @@ class TDTestCase:
|
||||||
"value": 1024 * 1024 * 20 * 10,
|
"value": 1024 * 1024 * 20 * 10,
|
||||||
"category": "global"
|
"category": "global"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "resolveFQDNRetryTime",
|
|
||||||
"value": 500,
|
|
||||||
"category": "global"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "syncElectInterval",
|
"name": "syncElectInterval",
|
||||||
"value": 50000,
|
"value": 50000,
|
||||||
|
|
|
@ -47,7 +47,7 @@ class TDTestCase:
|
||||||
|
|
||||||
def case2(self):
|
def case2(self):
|
||||||
tdSql.query("show variables")
|
tdSql.query("show variables")
|
||||||
tdSql.checkRows(94)
|
tdSql.checkRows(93)
|
||||||
|
|
||||||
for i in range(self.replicaVar):
|
for i in range(self.replicaVar):
|
||||||
tdSql.query("show dnode %d variables like 'debugFlag'" % (i + 1))
|
tdSql.query("show dnode %d variables like 'debugFlag'" % (i + 1))
|
||||||
|
|
Loading…
Reference in New Issue