From f063e685d872bca4727eab9e03f4bd14b2f02b39 Mon Sep 17 00:00:00 2001 From: "keroroxx520@gmail.com" Date: Tue, 7 Jan 2025 11:52:57 +0800 Subject: [PATCH] fix(test): config redis url correctly --- host/src/proof.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/src/proof.rs b/host/src/proof.rs index 9a8e7599..0f5ace67 100644 --- a/host/src/proof.rs +++ b/host/src/proof.rs @@ -721,6 +721,8 @@ mod tests { fn setup_actor_with_tasks(tx: Sender, rx: Receiver) -> ProofActor { let opts = Opts { concurrency_limit: 4, + redis_url: "redis://localhost:6379".to_string(), + redis_ttl: 3600, ..Default::default() };