From 8e52efb9d9cc133e3891d8f1bfbdbcd80c748c11 Mon Sep 17 00:00:00 2001 From: Morgan Mccauley Date: Tue, 13 Feb 2024 14:22:51 +1300 Subject: [PATCH] fix: Actually delete redis keys --- coordinator/src/redis.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/src/redis.rs b/coordinator/src/redis.rs index 1bc3f3501..a5c26d28a 100644 --- a/coordinator/src/redis.rs +++ b/coordinator/src/redis.rs @@ -183,7 +183,7 @@ impl RedisClientImpl { self.connection .clone() - .keys(&key) + .del(&key) .await .map_err(|e| anyhow::format_err!(e)) .context(format!("DEL {key:?}"))