From 7b581f05fa10f4cc8859d5bed43c740027a846bc Mon Sep 17 00:00:00 2001 From: Yukang-Lian Date: Tue, 30 Dec 2025 15:28:24 +0800 Subject: [PATCH] 1 --- .../groovy/org/apache/doris/regression/suite/Suite.groovy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy index 706fbad455cce6..b50619d04817a7 100644 --- a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy +++ b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy @@ -3239,12 +3239,13 @@ class Suite implements GroovyInterceptable { def jsonOutput = new JsonOutput() def map = [] def js = jsonOutput.toJson(map) - log.info("fix tablet stat req: /MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${instance_id}&table_id=${table_id} ".toString()) + def cloudUniqueId = context.config.cloudUniqueId + log.info("fix tablet stat req: /MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${cloudUniqueId}&table_id=${table_id} ".toString()) def fix_tablet_stats_api = { request_body, check_func -> httpTest { endpoint context.config.metaServiceHttpAddress - uri "/MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${instance_id}&table_id=${table_id}" + uri "/MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${cloudUniqueId}&table_id=${table_id}" body request_body check check_func }