Allow mock in http adapter checking
authorFloatingGhost <hannah@coffee-and-dreams.uk>
Sun, 11 Dec 2022 23:33:58 +0000 (23:33 +0000)
committerFloatingGhost <hannah@coffee-and-dreams.uk>
Sun, 11 Dec 2022 23:33:58 +0000 (23:33 +0000)
lib/pleroma/config/deprecation_warnings.ex

index 33dc925bba42f74f71026403119ae3f63ae51ff1..972d1fb9669066cdbe447a3d808f8214603f3cbf 100644 (file)
@@ -217,6 +217,10 @@ defmodule Pleroma.Config.DeprecationWarnings do
       {Tesla.Adapter.Finch, _} ->
         :ok
 
+      Tesla.Mock ->
+        # tests do be testing
+        :ok
+
       _anything_else ->
         Logger.error("""
         !!!CONFIG ERROR!!!
@@ -225,6 +229,7 @@ defmodule Pleroma.Config.DeprecationWarnings do
         Please ensure you either:
         \n* do not have any custom value for `:tesla, :adapter`, or
         \n* have `config :tesla, :adapter, {Tesla.Adapter.Finch, name: MyFinch}`
+        (your current value is #{inspect(http_adapter)})
         """)
 
         :error