This is an automated email from the ASF dual-hosted git repository.

dataroaring 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 0dfdfcd1a01 [fix](filecache) fix flaky case 
populate_empty_cache_with_normal (#57091)
0dfdfcd1a01 is described below

commit 0dfdfcd1a0141b4ecee95788c0a0a54f774f5d4a
Author: zhengyu <[email protected]>
AuthorDate: Mon Oct 20 20:53:22 2025 +0800

    [fix](filecache) fix flaky case populate_empty_cache_with_normal (#57091)
---
 be/test/io/cache/block_file_cache_test.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/test/io/cache/block_file_cache_test.cpp 
b/be/test/io/cache/block_file_cache_test.cpp
index 35c8f9c0e3d..16773016148 100644
--- a/be/test/io/cache/block_file_cache_test.cpp
+++ b/be/test/io/cache/block_file_cache_test.cpp
@@ -5618,7 +5618,7 @@ TEST_F(BlockFileCacheTest, 
populate_empty_cache_with_normal) {
     io::BlockFileCache cache(cache_base_path, settings);
     ASSERT_TRUE(cache.initialize());
     int i = 0;
-    for (; i < 100; i++) {
+    for (; i < 5000; i++) {
         if (cache.get_async_open_success()) {
             break;
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to