diff --git a/backend/lib/edgehog/application.ex b/backend/lib/edgehog/application.ex index 59a60bfe6..9debb8484 100644 --- a/backend/lib/edgehog/application.ex +++ b/backend/lib/edgehog/application.ex @@ -54,10 +54,11 @@ defmodule Edgehog.Application do # Start the UpdateCampaigns supervisor Edgehog.UpdateCampaigns.Supervisor, # Start the Endpoint (http/https) - EdgehogWeb.Endpoint, - # Start the Tenant Reconciler Supervisor - {Edgehog.Tenants.Reconciler.Supervisor, - tenant_to_trigger_url_fun: tenant_to_trigger_url_fun} + EdgehogWeb.Endpoint + # TODO: enable this back after Ash porting is complete + # # Start the Tenant Reconciler Supervisor + # {Edgehog.Tenants.Reconciler.Supervisor, + # tenant_to_trigger_url_fun: tenant_to_trigger_url_fun} ] # See https://hexdocs.pm/elixir/Supervisor.html diff --git a/backend/lib/edgehog/update_campaigns/supervisor.ex b/backend/lib/edgehog/update_campaigns/supervisor.ex index dc3aa7a2c..670e51a9d 100644 --- a/backend/lib/edgehog/update_campaigns/supervisor.ex +++ b/backend/lib/edgehog/update_campaigns/supervisor.ex @@ -54,6 +54,8 @@ defmodule Edgehog.UpdateCampaigns.Supervisor do end defp children(_mix_env) do - @base_children ++ [Resumer] + # TODO: enable this back after Ash porting is complete + # @base_children ++ [Resumer] + @base_children end end