From 47ba1041fc9ab005dc9a319d99c179a5202b631e Mon Sep 17 00:00:00 2001 From: lijunbo Date: Mon, 27 Mar 2017 18:38:50 +0800 Subject: [PATCH] Use swift tempurl instaed of swift-temp-url Deprecate swift-temp-url and call python-swiftclient's implementation instead. This adds python-swiftclient as an optional dependency of Swift which is noted in releasenotes. Change-Id: I0404f16c21099cb7695430f5b63722729c305613 --- doc/source/middleware.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/middleware.rst b/doc/source/middleware.rst index 91f4c05c34..5a57f21a1c 100644 --- a/doc/source/middleware.rst +++ b/doc/source/middleware.rst @@ -80,7 +80,7 @@ There may be administrator-only information available via ``/info``. To retrieve it, one must use an HMAC-signed request, similar to TempURL. The signature may be produced like so:: - swift-temp-url GET 3600 /info secret 2>/dev/null | sed s/temp_url/swiftinfo/g + swift tempurl GET 3600 /info secret 2>/dev/null | sed s/temp_url/swiftinfo/g Domain Remap ============