Allow mock in http adapter checking
ci/woodpecker/push/woodpecker Pipeline is pending Details

This commit is contained in:
FloatingGhost 2022-12-11 23:33:58 +00:00
parent f752126427
commit 503827a3d9
1 changed files with 5 additions and 0 deletions

View 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