diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2019-10-17 22:52:46 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-10-18 14:50:09 +0000 |
commit | 25b7ff56c371fa3b405fa339aaac6d4f0876ed85 (patch) | |
tree | 843b8d389d5de1715cd23f4187a5fc8400fa2c44 /lib/pleroma | |
parent | c6de0cbb4ae0cf2b04db5e1be79fab6138cbe71a (diff) | |
download | pleroma-25b7ff56c371fa3b405fa339aaac6d4f0876ed85.tar.gz |
application: don't start Federator.init/1 anymore
Diffstat (limited to 'lib/pleroma')
-rw-r--r-- | lib/pleroma/application.ex | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 0bf218bc7..d681eecc8 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -161,11 +161,6 @@ defmodule Pleroma.Application do id: :web_push_init, start: {Task, :start_link, [&Pleroma.Web.Push.init/0]}, restart: :temporary - }, - %{ - id: :federator_init, - start: {Task, :start_link, [&Pleroma.Web.Federator.init/0]}, - restart: :temporary } ] end @@ -178,11 +173,6 @@ defmodule Pleroma.Application do restart: :temporary }, %{ - id: :federator_init, - start: {Task, :start_link, [&Pleroma.Web.Federator.init/0]}, - restart: :temporary - }, - %{ id: :internal_fetch_init, start: {Task, :start_link, [&Pleroma.Web.ActivityPub.InternalFetchActor.init/0]}, restart: :temporary |