Skip to content

Commit a3252b7

Browse files
authored
[Fix](Test) Fix tablet stats case (#59484)
1 parent 6ec35ec commit a3252b7

File tree

1 file changed

+3
-2
lines changed
  • regression-test/framework/src/main/groovy/org/apache/doris/regression/suite

1 file changed

+3
-2
lines changed

regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3246,12 +3246,13 @@ class Suite implements GroovyInterceptable {
32463246
def jsonOutput = new JsonOutput()
32473247
def map = []
32483248
def js = jsonOutput.toJson(map)
3249-
log.info("fix tablet stat req: /MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${instance_id}&table_id=${table_id} ".toString())
3249+
def cloudUniqueId = context.config.cloudUniqueId
3250+
log.info("fix tablet stat req: /MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${cloudUniqueId}&table_id=${table_id} ".toString())
32503251

32513252
def fix_tablet_stats_api = { request_body, check_func ->
32523253
httpTest {
32533254
endpoint context.config.metaServiceHttpAddress
3254-
uri "/MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${instance_id}&table_id=${table_id}"
3255+
uri "/MetaService/http/fix_tablet_stats?token=${token}&cloud_unique_id=${cloudUniqueId}&table_id=${table_id}"
32553256
body request_body
32563257
check check_func
32573258
}

0 commit comments

Comments
 (0)