From 729320e32d91138aaeed94567c76388e34a66966 Mon Sep 17 00:00:00 2001 From: Shivaraj B H Date: Mon, 18 Mar 2024 23:39:27 +0530 Subject: [PATCH] =?UTF-8?q?refactor:=20process=E2=80=99=20command=20can=20?= =?UTF-8?q?be=20a=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> --- nix/redis.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/redis.nix b/nix/redis.nix index 2eccb0ba..a6c03aa9 100644 --- a/nix/redis.nix +++ b/nix/redis.nix @@ -72,7 +72,7 @@ in }; in { - command = "${startScript}/bin/start-redis"; + command = startScript; readiness_probe = { exec.command = "${config.package}/bin/redis-cli -p ${toString config.port} ping";