diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-05 19:38:44 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-05 19:38:44 +0700 |
commit | f1712cd2f1ec6061f70d259f8f5e2b7e9f408d8c (patch) | |
tree | 8b72215d1579dd7be5a5d3f5c5126c36ac26aa2b /lib/pleroma/application.ex | |
parent | 9c9eec62c2fb67507708dd9e5d3f80a098881a6e (diff) | |
download | pleroma-f1712cd2f1ec6061f70d259f8f5e2b7e9f408d8c.tar.gz |
Use PleromaJobQueue in Pleroma.Web.Push
Diffstat (limited to 'lib/pleroma/application.ex')
-rw-r--r-- | lib/pleroma/application.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 782d1d589..8f8d26814 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -109,8 +109,8 @@ defmodule Pleroma.Application do [ worker(Pleroma.Web.Federator.RetryQueue, []), worker(Pleroma.Stats, []), - worker(Pleroma.Web.Push, []), - worker(Task, [&Pleroma.Web.Federator.init/0], restart: :temporary) + worker(Task, [&Pleroma.Web.Push.init/0], restart: :temporary, id: :web_push_init), + worker(Task, [&Pleroma.Web.Federator.init/0], restart: :temporary, id: :federator_init) ] ++ streamer_child() ++ chat_child() ++ |