diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2019-10-04 16:15:54 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-10-04 16:15:54 +0000 |
commit | 17fed5ae528ffc10e726cd88d3ec48f9b2350169 (patch) | |
tree | 658699078263e3a50ea605b6f3fa0c3f7007912c | |
parent | e951c547f7970e3d9778c3443e311c2428d4caab (diff) | |
download | pleroma-17fed5ae528ffc10e726cd88d3ec48f9b2350169.tar.gz pleroma-17fed5ae528ffc10e726cd88d3ec48f9b2350169.zip |
application: fix up after_supervisor_start removal backport
-rw-r--r-- | lib/pleroma/application.ex | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex index 3b75bbe6a..9c95ce666 100644 --- a/lib/pleroma/application.ex +++ b/lib/pleroma/application.ex @@ -56,9 +56,7 @@ defmodule Pleroma.Application do # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html # for other strategies and supported options opts = [strategy: :one_for_one, name: Pleroma.Supervisor] - result = Supervisor.start_link(children, opts) - :ok = after_supervisor_start() - result + Supervisor.start_link(children, opts) end defp setup_instrumenters do |