logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 4647bcd6e647ad31ba492a6e712721b58bf47e83
parent: a743940463a7d0a7346f77792310dff6a98e7f31
Author: Roger Braun <roger@rogerbraun.net>
Date:   Sat, 18 Nov 2017 12:22:07 +0100

Don't start streamer during tests.

Diffstat:

Mlib/pleroma/application.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex @@ -20,8 +20,8 @@ defmodule Pleroma.Application do limit: 2500 ]]), worker(Pleroma.Web.Federator, []), - worker(Pleroma.Web.Streamer, []) ] + ++ if Mix.env == :test, do: [], else: [worker(Pleroma.Web.Streamer, [])] # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html # for other strategies and supported options