From: Yehuda Sadeh-Weinraub <yehuda@redhat.com>
To: Herve Rousseau <hroussea@cern.ch>
Cc: ceph-devel@vger.kernel.org
Subject: Re: [PATCH] Swift: Set Content-Length when requesting/checking Keystone tokens
Date: Mon, 27 Apr 2015 11:35:51 -0400 (EDT) [thread overview]
Message-ID: <1638259563.5815735.1430148951109.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <1429979938-18465-1-git-send-email-hroussea@cern.ch>
This looks good. Can you send a pull request to the ceph github repository?
Thanks,
Yehuda
----- Original Message -----
> From: "Herve Rousseau" <hroussea@cern.ch>
> To: ceph-devel@vger.kernel.org
> Cc: "Hervé Rousseau" <hroussea@cern.ch>
> Sent: Saturday, April 25, 2015 9:38:58 AM
> Subject: [PATCH] Swift: Set Content-Length when requesting/checking Keystone tokens
>
> From: Hervé Rousseau <hroussea@cern.ch>
>
> Running Keystone with WSGIChunkedRequest=On is not supported.
>
> We have to make sure that we set the Content-Length header when getting
> an admin token and checking revoked tokens, otherwise Keystone returns
> a HTTP 411 error.
>
> Same applies when checking revoked tickets.
>
> Signed-off-by: Hervé Rousseau <hroussea@cern.ch>
> ---
> src/rgw/rgw_swift.cc | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/src/rgw/rgw_swift.cc b/src/rgw/rgw_swift.cc
> index 76f21ee..a08d944 100644
> --- a/src/rgw/rgw_swift.cc
> +++ b/src/rgw/rgw_swift.cc
> @@ -269,6 +269,7 @@ int RGWSwift::get_keystone_admin_token(std::string&
> token)
> std::stringstream ss;
> jf.flush(ss);
> token_req.set_post_data(ss.str());
> + token_req.set_send_length(ss.str().length());
> int ret = token_req.process("POST", token_url.c_str());
> if (ret < 0)
> return ret;
> @@ -296,6 +297,7 @@ int RGWSwift::check_revoked()
> return -EINVAL;
> url.append("v2.0/tokens/revoked");
> req.append_header("X-Auth-Token", token);
> + req.set_send_length(0);
> int ret = req.process(url.c_str());
> if (ret < 0)
> return ret;
> --
> 1.7.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2015-04-27 15:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-25 16:38 [PATCH] Swift: Set Content-Length when requesting/checking Keystone tokens Herve Rousseau
2015-04-27 6:38 ` Herve Rousseau
2015-04-27 15:35 ` Yehuda Sadeh-Weinraub [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1638259563.5815735.1430148951109.JavaMail.zimbra@redhat.com \
--to=yehuda@redhat.com \
--cc=ceph-devel@vger.kernel.org \
--cc=hroussea@cern.ch \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.