Fix gun_pool_options deprecation warning message
authorMark Felder <feld@FreeBSD.org>
Tue, 22 Sep 2020 16:15:40 +0000 (11:15 -0500)
committerMark Felder <feld@FreeBSD.org>
Tue, 22 Sep 2020 16:15:40 +0000 (11:15 -0500)
lib/pleroma/config/deprecation_warnings.ex
test/config/deprecation_warnings_test.exs

index 091d0236637e9d74bc7b9f6e7c8c99775feb2065..4ba6eaa77e0e86ad90a8c11a8dd058720ff29b16 100644 (file)
@@ -122,7 +122,7 @@ defmodule Pleroma.Config.DeprecationWarnings do
     if timeout = pool_config[:await_up_timeout] do
       Logger.warn("""
       !!!DEPRECATION WARNING!!!
-      Your config is using old setting name `await_up_timeout` instead of `connect_timeout`. Setting should work for now, but you are advised to change format to scheme with port to prevent possible issues later.
+      Your config is using old setting `config :pleroma, :connections_pool, await_up_timeout`. Please change to `config :pleroma, :connections_pool, connect_timeout` to ensure compatibility with future releases.
       """)
 
       Config.put(:connections_pool, Keyword.put_new(pool_config, :connect_timeout, timeout))
index e22052404c899bdc3b92618361d7ae7b93239ea4..7f0d2a298934ea812a1a122ee2c43008ae39db24 100644 (file)
@@ -74,7 +74,7 @@ defmodule Pleroma.Config.DeprecationWarningsTest do
       assert capture_log(fn ->
                DeprecationWarnings.check_gun_pool_options()
              end) =~
-               "Your config is using old setting name `await_up_timeout` instead of `connect_timeout`"
+               "Your config is using old setting `config :pleroma, :connections_pool, await_up_timeout`."
     end
 
     test "pool timeout" do