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

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 10cc03189 fix(core): Build with redis features and Rust < 1.72 (#3683)
10cc03189 is described below

commit 10cc03189db7184e4f51d4dfd4a971e2a261d466
Author: Vincent de Phily <[email protected]>
AuthorDate: Thu Nov 30 01:10:29 2023 +0000

    fix(core): Build with redis features and Rust < 1.72 (#3683)
    
    Just need to be explicit about using our own redis mod rather than the 
redis crate.
    
    Fixes #3595
---
 core/src/services/mod.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/src/services/mod.rs b/core/src/services/mod.rs
index 947274a63..1a2e64e02 100644
--- a/core/src/services/mod.rs
+++ b/core/src/services/mod.rs
@@ -152,9 +152,9 @@ pub use self::persy::Persy;
 #[cfg(feature = "services-redis")]
 mod redis;
 #[cfg(feature = "services-redis")]
-pub use redis::Redis;
+pub use self::redis::Redis;
 #[cfg(feature = "services-redis")]
-pub use redis::RedisConfig;
+pub use self::redis::RedisConfig;
 
 #[cfg(feature = "services-rocksdb")]
 mod rocksdb;

Reply via email to