fixed config/descpiption.exs
authorMaksim Pechnikov <parallel588@gmail.com>
Wed, 24 Jun 2020 18:21:33 +0000 (21:21 +0300)
committerMaksim Pechnikov <parallel588@gmail.com>
Wed, 24 Jun 2020 18:21:33 +0000 (21:21 +0300)
config/description.exs
lib/pleroma/application.ex

index f9523936a1b52e5b220454849a8055082987f7c8..ff777391e2efbb944820754e2655552e326b329d 100644 (file)
@@ -1996,18 +1996,11 @@ config :pleroma, :config_description, [
     """,
     children: [
       %{
-        key: :verbose,
+        key: :log,
         type: {:dropdown, :atom},
         description: "Logs verbose mode",
         suggestions: [false, :error, :warn, :info, :debug]
       },
-      %{
-        key: :prune,
-        type: [:atom, :tuple],
-        description:
-          "Non-retryable jobs [pruning settings](https://github.com/sorentwo/oban#pruning)",
-        suggestions: [:disabled, {:maxlen, 1500}, {:maxage, 60 * 60}]
-      },
       %{
         key: :queues,
         type: {:keyword, :integer},
index fb2731f97d910c5021ada0af32d22e0017c248cc..9615af1229a9541bac56506a19ba63f5e59bd23a 100644 (file)
@@ -80,7 +80,7 @@ defmodule Pleroma.Application do
         [
           Pleroma.Stats,
           Pleroma.JobQueueMonitor,
-          {Oban, oban_config()}
+          {Oban, Config.get(Oban)}
         ] ++
         task_children(@env) ++
         streamer_child(@env) ++
@@ -138,18 +138,6 @@ defmodule Pleroma.Application do
     Pleroma.Web.Endpoint.Instrumenter.setup()
   end
 
-  defp oban_config do
-    config = Config.get(Oban)
-
-    if Code.ensure_loaded?(IEx) and IEx.started?() do
-      config
-      |> Keyword.put(:crontab, false)
-      |> Keyword.put(:queues, false)
-    else
-      config
-    end
-  end
-
   defp cachex_children do
     [
       build_cachex("used_captcha", ttl_interval: seconds_valid_interval()),