From 6308af9341de5f327327b2f3bd29af75633af8f2 Mon Sep 17 00:00:00 2001 From: lens0021 Date: Wed, 9 Oct 2024 08:08:37 +0900 Subject: [PATCH] memcached: Fix command https://github.com/femiwiki/nomad/issues/232 --- jobs/memcached.nomad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/memcached.nomad b/jobs/memcached.nomad index 4dbbafc..aab4958 100644 --- a/jobs/memcached.nomad +++ b/jobs/memcached.nomad @@ -25,7 +25,7 @@ job "memcached" { check { type = "script" task = "memcached" - command = "/usr/bin/bash" + command = "/usr/bin/nc" args = ["-zv", "localhost", "11211"] interval = "10s" timeout = "1s"