aboutsummaryrefslogtreecommitdiff
path: root/lib/mix/tasks
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-07-03 19:18:08 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-07-08 15:58:47 +0300
commit72ad3a66f48d4500be1f25dd7b02b834399d3bbe (patch)
tree53edca92ccdcd92a19209a5f8174e06636ceaaa9 /lib/mix/tasks
parent6335b32aa8f5c54cf5f09638189a77cad5785077 (diff)
downloadpleroma-72ad3a66f48d4500be1f25dd7b02b834399d3bbe.tar.gz
don't fully start pleroma in mix tasks
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r--lib/mix/tasks/pleroma/digest.ex2
-rw-r--r--lib/mix/tasks/pleroma/email.ex1
-rw-r--r--lib/mix/tasks/pleroma/relay.ex3
3 files changed, 6 insertions, 0 deletions
diff --git a/lib/mix/tasks/pleroma/digest.ex b/lib/mix/tasks/pleroma/digest.ex
index 3595f912d..8bde2d4f2 100644
--- a/lib/mix/tasks/pleroma/digest.ex
+++ b/lib/mix/tasks/pleroma/digest.ex
@@ -7,6 +7,8 @@ defmodule Mix.Tasks.Pleroma.Digest do
def run(["test", nickname | opts]) do
Mix.Pleroma.start_pleroma()
+ Application.ensure_all_started(:timex)
+ Application.ensure_all_started(:swoosh)
user = Pleroma.User.get_by_nickname(nickname)
diff --git a/lib/mix/tasks/pleroma/email.ex b/lib/mix/tasks/pleroma/email.ex
index d3fac6ec8..16fe31431 100644
--- a/lib/mix/tasks/pleroma/email.ex
+++ b/lib/mix/tasks/pleroma/email.ex
@@ -7,6 +7,7 @@ defmodule Mix.Tasks.Pleroma.Email do
def run(["test" | args]) do
Mix.Pleroma.start_pleroma()
+ Application.ensure_all_started(:swoosh)
{options, [], []} =
OptionParser.parse(
diff --git a/lib/mix/tasks/pleroma/relay.ex b/lib/mix/tasks/pleroma/relay.ex
index c3312507e..b67d256c3 100644
--- a/lib/mix/tasks/pleroma/relay.ex
+++ b/lib/mix/tasks/pleroma/relay.ex
@@ -12,6 +12,7 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["follow", target]) do
start_pleroma()
+ Application.ensure_all_started(:flake_id)
with {:ok, _activity} <- Relay.follow(target) do
# put this task to sleep to allow the genserver to push out the messages
@@ -23,6 +24,7 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["unfollow", target]) do
start_pleroma()
+ Application.ensure_all_started(:flake_id)
with {:ok, _activity} <- Relay.unfollow(target) do
# put this task to sleep to allow the genserver to push out the messages
@@ -34,6 +36,7 @@ defmodule Mix.Tasks.Pleroma.Relay do
def run(["list"]) do
start_pleroma()
+ Application.ensure_all_started(:flake_id)
with {:ok, list} <- Relay.list(true) do
list |> Enum.each(&shell_info(&1))