]> git.openstreetmap.org Git - chef.git/commitdiff
Allow the trace importer to run on all frontends
authorTom Hughes <tom@compton.nu>
Sat, 16 Jul 2022 11:00:43 +0000 (12:00 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 16 Jul 2022 11:00:43 +0000 (12:00 +0100)
Now that the trace files are in the cloud there's no need to
limit imports to the primary cluster.

cookbooks/web/recipes/frontend.rb

index ecfaea7efb55de325f3e986e1d275b225b1576d4..e18974af8507c7e441c7e7408897a8420ebdd18d 100644 (file)
@@ -77,15 +77,9 @@ service "rails-jobs@storage" do
   subscribes :restart, "systemd_service[rails-jobs]"
 end
 
-if node[:web][:primary_cluster]
-  service "rails-jobs@traces" do
-    action [:enable, :start]
-    supports :restart => true
-    subscribes :restart, "rails_port[www.openstreetmap.org]"
-    subscribes :restart, "systemd_service[rails-jobs]"
-  end
-else
-  service "rails-jobs@traces" do
-    action [:disable, :stop]
-  end
+service "rails-jobs@traces" do
+  action [:enable, :start]
+  supports :restart => true
+  subscribes :restart, "rails_port[www.openstreetmap.org]"
+  subscribes :restart, "systemd_service[rails-jobs]"
 end