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

xuanwo pushed a commit to branch allow-retry-for-more-time
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git

commit dffbe8289d54efdeb625053e2900631a84e19cf0
Author: Xuanwo <[email protected]>
AuthorDate: Tue Sep 19 14:37:18 2023 +0800

    fix(tests): Allow retry more times to make gdrive happy
    
    Signed-off-by: Xuanwo <[email protected]>
---
 core/tests/behavior/utils.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/tests/behavior/utils.rs b/core/tests/behavior/utils.rs
index b5bd0970d..c9c9a24e3 100644
--- a/core/tests/behavior/utils.rs
+++ b/core/tests/behavior/utils.rs
@@ -85,7 +85,7 @@ pub fn init_service<B: Builder>() -> Option<Operator> {
     let mut op = op
         .layer(LoggingLayer::default().with_backtrace_output(true))
         .layer(TimeoutLayer::new())
-        .layer(RetryLayer::new())
+        .layer(RetryLayer::new().with_max_times(4))
         .finish();
 
     if !op.info().full_capability().blocking {

Reply via email to