mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-08 09:24:18 +00:00
Allow mock in http adapter checking
This commit is contained in:
parent
f752126427
commit
503827a3d9
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue