This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch disable_blocking_layer in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit d691e95c5058fe145f70cae88cff4f9c75b3a7fc Author: Xuanwo <[email protected]> AuthorDate: Mon Aug 7 17:42:28 2023 +0800 chore: Disable blocking layer unitl we make all services passed Signed-off-by: Xuanwo <[email protected]> --- core/tests/behavior/utils.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/tests/behavior/utils.rs b/core/tests/behavior/utils.rs index 1d3e2dcb1..62b6eccf2 100644 --- a/core/tests/behavior/utils.rs +++ b/core/tests/behavior/utils.rs @@ -28,9 +28,9 @@ use futures::Future; use libtest_mimic::Failed; use libtest_mimic::Trial; use log::debug; +use opendal::layers::LoggingLayer; use opendal::layers::RetryLayer; use opendal::layers::TimeoutLayer; -use opendal::layers::{BlockingLayer, LoggingLayer}; use opendal::*; use rand::distributions::uniform::SampleRange; use rand::prelude::*; @@ -83,7 +83,7 @@ pub fn init_service<B: Builder>() -> Option<Operator> { let _guard = RUNTIME.enter(); let op = op - .layer(BlockingLayer::create().expect("blocking layer must be created")) + // .layer(BlockingLayer::create().expect("blocking layer must be created")) .layer(LoggingLayer::default()) .layer(TimeoutLayer::new()) .layer(RetryLayer::new())
