summaryrefslogtreecommitdiff
path: root/restarter
diff options
context:
space:
mode:
authormarcin mikołajczak <git@mkljczk.pl>2023-02-19 22:02:03 +0100
committermarcin mikołajczak <git@mkljczk.pl>2023-02-19 22:02:03 +0100
commit92592c25c219f44ab6454762f5a5a97e800f5b1d (patch)
treef1db48a9b222d875841c43b9c5f9b6d2c810a500 /restarter
parent3ed39e310939d90ddbad7bd7ffa1ebd8aca6e74c (diff)
parent8a0162cd9694a1c5bf131fefb6e6a8d3dcb68fae (diff)
downloadpleroma-92592c25c219f44ab6454762f5a5a97e800f5b1d.tar.gz
pleroma-92592c25c219f44ab6454762f5a5a97e800f5b1d.zip
Merge remote-tracking branch 'pleroma/develop' into status-notification-type
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'restarter')
-rw-r--r--restarter/lib/pleroma.ex12
-rw-r--r--restarter/mix.exs5
2 files changed, 15 insertions, 2 deletions
diff --git a/restarter/lib/pleroma.ex b/restarter/lib/pleroma.ex
index 149a569ce..a7186cec4 100644
--- a/restarter/lib/pleroma.ex
+++ b/restarter/lib/pleroma.ex
@@ -61,6 +61,12 @@ defmodule Restarter.Pleroma do
{:noreply, @init_state}
end
+ # Don't actually restart during tests.
+ # We just check if the correct call has been done.
+ # If we actually restart, we get errors during the tests like
+ # (RuntimeError) could not lookup Ecto repo Pleroma.Repo because it was not started or
+ # it does not exist
+ # See tests in Pleroma.Config.TransferTaskTest
def handle_cast({:restart, :test, _}, state) do
Logger.debug("pleroma manually restarted")
{:noreply, Map.put(state, :need_reboot, false)}
@@ -74,6 +80,12 @@ defmodule Restarter.Pleroma do
def handle_cast({:after_boot, _}, %{after_boot: true} = state), do: {:noreply, state}
+ # Don't actually restart during tests.
+ # We just check if the correct call has been done.
+ # If we actually restart, we get errors during the tests like
+ # (RuntimeError) could not lookup Ecto repo Pleroma.Repo because it was not started or
+ # it does not exist
+ # See tests in Pleroma.Config.TransferTaskTest
def handle_cast({:after_boot, :test}, state) do
Logger.debug("pleroma restarted after boot")
state = %{state | after_boot: true, rebooted: true}
diff --git a/restarter/mix.exs b/restarter/mix.exs
index b0908aece..4bb9b76e2 100644
--- a/restarter/mix.exs
+++ b/restarter/mix.exs
@@ -5,7 +5,7 @@ defmodule Restarter.MixProject do
[
app: :restarter,
version: "0.1.0",
- elixir: "~> 1.8",
+ elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps()
]
@@ -13,7 +13,8 @@ defmodule Restarter.MixProject do
def application do
[
- mod: {Restarter, []}
+ mod: {Restarter, []},
+ extra_applications: [:logger]
]
end