This is an automated email from the ASF dual-hosted git repository.
gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 4c9cf5c2b09 [Fix](case) Fix case
`test_cloud_mow_new_tablet_compaction` (#54736)
4c9cf5c2b09 is described below
commit 4c9cf5c2b09264218f572be2ae785bdca5b5cfec
Author: bobhan1 <[email protected]>
AuthorDate: Thu Aug 14 19:12:52 2025 +0800
[Fix](case) Fix case `test_cloud_mow_new_tablet_compaction` (#54736)
---
.../cloud/test_cloud_mow_new_tablet_compaction.groovy | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_new_tablet_compaction.groovy
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_new_tablet_compaction.groovy
index ea510c03176..acbaac4f163 100644
---
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_new_tablet_compaction.groovy
+++
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_new_tablet_compaction.groovy
@@ -119,9 +119,15 @@ suite("test_cloud_mow_new_tablet_compaction",
"nonConcurrent") {
logger.info("Run compaction: code=" + code + ", out=" + out +
", err=" + err)
assert code == 0
def compactJson = parseJson(out.trim())
- assert "success" != compactJson.status.toLowerCase()
+ assert "success" == compactJson.status.toLowerCase()
}
+ Thread.sleep(1000)
+
+ def (code, out, err) = be_show_tablet_status(tabletBackend.Host,
tabletBackend.HttpPort, newTabletId)
+ assert code == 0
+ assert !out.contains("\"last cumulative failure time\":
\"1970-01-01")
+
GetDebugPoint().disableDebugPointForAllBEs("CloudSchemaChangeJob::_process_delete_bitmap.after.capture_without_lock")
// wait for sc to finish
waitForSchemaChangeDone {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]