]> granicus.if.org Git - ejabberd/commitdiff
mod_http_upload: Deprecate 'service_url' option
authorHolger Weiss <holger@zedat.fu-berlin.de>
Wed, 18 Jul 2018 16:16:42 +0000 (18:16 +0200)
committerHolger Weiss <holger@zedat.fu-berlin.de>
Wed, 18 Jul 2018 16:16:42 +0000 (18:16 +0200)
Users should migrate to the 'external_secret' interface.

src/mod_http_upload.erl

index 8ed47f69d0f1ac33d26679948b674a2937d95629..ed29299f68344f3c024d10d742bc40cd30d9dee1 100644 (file)
@@ -183,7 +183,10 @@ mod_opt_type(get_url) ->
     end;
 mod_opt_type(service_url) ->
     fun(undefined) -> undefined;
-       (URL) -> misc:try_url(URL)
+       (URL) ->
+          ?WARNING_MSG("option 'service_url' is deprecated, consider unsing "
+                       "the 'external_secret' interface instead", []),
+          misc:try_url(URL)
     end;
 mod_opt_type(custom_headers) ->
     fun(Headers) ->