diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-29 01:16:57 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-29 01:16:57 +0300 |
commit | 2453928b57d3dbe60a5f6a4a85f2f03d3192108e (patch) | |
tree | e34e7350885985cbd9c0f94ef0e2e6da30878f48 | |
parent | 9434e151a9f08067bf324ef027d857b67b0a96cb (diff) | |
download | pleroma-2453928b57d3dbe60a5f6a4a85f2f03d3192108e.tar.gz |
Ensure myhtmlex is started before swarm
Otherwise swarm is going to attempt resizing the cluster and timeout
-rw-r--r-- | mix.exs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ defmodule Pleroma.Mixfile do def application do [ mod: {Pleroma.Application, []}, - extra_applications: [:logger, :runtime_tools, :comeonin, :quack], + extra_applications: [:logger, :runtime_tools, :comeonin, :quack, :myhtmlex, :swarm], included_applications: [:ex_syslogger] ] end |