From 3e5f87c67613b8048bda3ed98d868f978ae95be0 Mon Sep 17 00:00:00 2001 From: Riley Seaburg Date: Mon, 12 Jan 2026 15:24:50 +0000 Subject: [PATCH] Fix sidekiq worker to run Sidekiq instead of Rails server --- .circleci/deploy-sidekiq.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/deploy-sidekiq.sh b/.circleci/deploy-sidekiq.sh index df34be894..1db716ff4 100755 --- a/.circleci/deploy-sidekiq.sh +++ b/.circleci/deploy-sidekiq.sh @@ -130,6 +130,7 @@ cf_push_with_retry() { # Let CF auto-detect buildpacks to avoid re-running supply phase (Rust already built in CircleCI) if cf push "$app_name" \ -t 180 \ + -c "bundle exec sidekiq -C config/sidekiq.yml" \ --health-check-type process; then echo "Successfully pushed $app_name"