From eb7f762b9ede4f0fce792052b1916a251a200864 Mon Sep 17 00:00:00 2001 From: fumimowdan Date: Mon, 11 Sep 2023 16:16:38 +0100 Subject: [PATCH] Enable sidekiq worker --- terraform/aks/application.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/aks/application.tf b/terraform/aks/application.tf index ca05e125..68ebea66 100644 --- a/terraform/aks/application.tf +++ b/terraform/aks/application.tf @@ -52,6 +52,6 @@ module "worker_application" { docker_image = var.app_docker_image replicas = 0 -# command = ["bundle", "exec", "sidekiq", "-C", "./config/sidekiq.yml"] -# probe_command = ["pgrep", "-f", "sidekiq"] + command = ["bundle", "exec", "sidekiq", "-C", "./config/sidekiq.yml"] + probe_command = ["pgrep", "-f", "sidekiq"] }