diff options
| author | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:15:40 -0500 |
|---|---|---|
| committer | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:15:40 -0500 |
| commit | e2dcf039d24b1606c90cea75ef11c79b7677c209 (patch) | |
| tree | d0c23b429de48945e24e857757a51a6d7fa9d813 /lib | |
| parent | 2fc3b46ee7e8ee8c22d4cf0039bbe9755a0e3beb (diff) | |
| download | pleroma-e2dcf039d24b1606c90cea75ef11c79b7677c209.tar.gz pleroma-e2dcf039d24b1606c90cea75ef11c79b7677c209.zip | |
Fix gun_pool_options deprecation warning message
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/config/deprecation_warnings.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/config/deprecation_warnings.ex b/lib/pleroma/config/deprecation_warnings.ex index 091d02366..4ba6eaa77 100644 --- a/lib/pleroma/config/deprecation_warnings.ex +++ b/lib/pleroma/config/deprecation_warnings.ex @@ -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)) |
