Skip to content

Commit

Permalink
fix: redis req relaxed
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-affinidi committed Dec 20, 2024
1 parent baffb87 commit 2feaf9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion affinidi-messaging-mediator/src/database/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use semver::{Version, VersionReq};
use std::{fs::read_to_string, thread::sleep, time::Duration};
use tracing::{error, event, info, Level};

const REDIS_VERSION_REQ: &str = ">=7.2, <8.0";
const REDIS_VERSION_REQ: &str = ">=7.1, <8.0";

impl DatabaseHandler {
pub async fn new(config: &Config) -> Result<Self, MediatorError> {
Expand Down

0 comments on commit 2feaf9f

Please sign in to comment.