From a422e022aabeab8aae98467737f886808850c9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Mon, 26 Oct 2020 18:45:44 +0100 Subject: [PATCH] Run delayed job tasks in the staging environment We added the background role to the production and preproduction environments in commit d0b0782c4, but forgot to add it to the staging environment as well. --- config/deploy/staging.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy/staging.rb b/config/deploy/staging.rb index 7ef6191e4..32c13a35c 100644 --- a/config/deploy/staging.rb +++ b/config/deploy/staging.rb @@ -1,3 +1,3 @@ set :branch, ENV["branch"] || :master -server deploysecret(:server), user: deploysecret(:user), roles: %w[web app db importer cron] +server deploysecret(:server), user: deploysecret(:user), roles: %w[web app db importer cron background]