From cef06de7e43af912910f4392b00e8cd03bd07597 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 16 Jul 2024 11:51:08 +0000 Subject: [PATCH] [consul] delete test value --- consul/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/consul/src/lib.rs b/consul/src/lib.rs index 27b0390..b791024 100644 --- a/consul/src/lib.rs +++ b/consul/src/lib.rs @@ -23,6 +23,7 @@ pub fn start(_args: String) -> FnResult { .with_exec(vec!["overmind", "status"])? .with_exec(vec!["consul", "kv", "put", "redis/config/minconns", "1"])? .with_exec(vec!["consul", "kv", "get", "redis/config/minconns"])? + .with_exec(vec!["consul", "kv", "delete", "redis/config/minconns"])? .stdout()?; Ok(stdout) }