Browse Source

Merge branch 'fix/mix-tasks-ensure-no-endpoints-are-served' into 'develop'

Mix Tasks: Switch to Application.ensure_all_started instead of Mix.Task.run and ensure serve_endpoints is set to false

See merge request pleroma/pleroma!1255
tags/v1.1.4
kaniini 5 years ago
parent
commit
cb89987ca1
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      lib/mix/tasks/pleroma/common.ex

+ 2
- 1
lib/mix/tasks/pleroma/common.ex View File

@@ -5,7 +5,8 @@
defmodule Mix.Tasks.Pleroma.Common do defmodule Mix.Tasks.Pleroma.Common do
@doc "Common functions to be reused in mix tasks" @doc "Common functions to be reused in mix tasks"
def start_pleroma do def start_pleroma do
Mix.Task.run("app.start")
Application.put_env(:phoenix, :serve_endpoints, false, persistent: true)
{:ok, _} = Application.ensure_all_started(:pleroma)
end end


def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do def get_option(options, opt, prompt, defval \\ nil, defname \\ nil) do


Loading…
Cancel
Save