Merge branch 'develop' into gun
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Sat, 7 Mar 2020 09:41:37 +0000 (12:41 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Sat, 7 Mar 2020 09:41:37 +0000 (12:41 +0300)
1  2 
CHANGELOG.md
docs/API/admin_api.md
lib/pleroma/config/transfer_task.ex
restarter/lib/pleroma.ex
test/web/admin_api/admin_api_controller_test.exs

diff --cc CHANGELOG.md
Simple merge
Simple merge
Simple merge
index e48bc4d1dd20b3183930d843a16da7ab579c7931,7f08c637cb6f4ccb0107ad78112d6c835ff3cc6c..149a569ce42b016910c9780814aa24999d640176
@@@ -44,8 -62,8 +62,8 @@@ defmodule Restarter.Pleroma d
    end
  
    def handle_cast({:restart, :test, _}, state) do
 -    Logger.warn("pleroma restarted")
 +    Logger.debug("pleroma manually restarted")
-     {:noreply, Map.put(state, :need_reboot?, false)}
+     {:noreply, Map.put(state, :need_reboot, false)}
    end
  
    def handle_cast({:restart, _, delay}, state) do
@@@ -57,8 -75,9 +75,9 @@@
    def handle_cast({:after_boot, _}, %{after_boot: true} = state), do: {:noreply, state}
  
    def handle_cast({:after_boot, :test}, state) do
 -    Logger.warn("pleroma restarted")
 +    Logger.debug("pleroma restarted after boot")
-     {:noreply, Map.put(state, :after_boot, true)}
+     state = %{state | after_boot: true, rebooted: true}
+     {:noreply, state}
    end
  
    def handle_cast({:after_boot, _}, state) do