Skip to content

Commit c75467c

Browse files
authored
[fix](case) Increase the robustness of some docker case (#57991)
1. fix `test_auto_start_in_cloud` , Occasionally fails due to issues with the audit log plugin. 2. fix `test_clean_tablet_when_rebalance`, Occasionally, queries fail on the ci pipeline, displaying the error "failed to send brpc when exchanging".
1 parent e25a4e0 commit c75467c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

regression-test/suites/cloud_p0/multi_cluster/test_auto_start.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ suite('test_auto_start_in_cloud', 'multi_cluster, docker') {
7777
}
7878

7979
docker(options) {
80+
sql "set global enable_audit_plugin = false"
8081
sql """
8182
CREATE TABLE table1 (
8283
class INT,

regression-test/suites/cloud_p0/tablets/test_clean_tablet_when_rebalance.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ suite('test_clean_tablet_when_rebalance', 'docker') {
4646

4747
def selectTriggerRehash = { ->
4848
for (int i = 0; i < 5; i++) {
49-
sql """
49+
sleep(1000)
50+
try_sql """
5051
select count(*) from $table
5152
"""
5253
}

0 commit comments

Comments
 (0)