Skip to content

Commit

Permalink
fix(core): Build with redis features and Rust < 1.72
Browse files Browse the repository at this point in the history
Just need to be explicit about using our own redis mod rather than the redis crate.

Fixes #3595
  • Loading branch information
vincentdephily committed Nov 29, 2023
1 parent cccbcce commit 348d2e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/services/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 348d2e4

Please sign in to comment.