diff options
author | Casey Bodley <cbodley@redhat.com> | 2018-11-24 02:46:47 +0100 |
---|---|---|
committer | Casey Bodley <cbodley@redhat.com> | 2019-03-29 04:39:42 +0100 |
commit | 848f20cbc5bf9ec79e3636b4986a86298468c188 (patch) | |
tree | 2a541b70b1eb8a530ebe3d94238c02eaa3b37535 /src/rgw/rgw_rest_sts.cc | |
parent | Merge pull request #27243 from theanalyst/doc-scheduler (diff) | |
download | ceph-848f20cbc5bf9ec79e3636b4986a86298468c188.tar.xz ceph-848f20cbc5bf9ec79e3636b4986a86298468c188.zip |
rgw: http interfaces take optional_yield
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Diffstat (limited to 'src/rgw/rgw_rest_sts.cc')
-rw-r--r-- | src/rgw/rgw_rest_sts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_rest_sts.cc b/src/rgw/rgw_rest_sts.cc index 072ee9c25c5..30d7e821f67 100644 --- a/src/rgw/rgw_rest_sts.cc +++ b/src/rgw/rgw_rest_sts.cc @@ -64,7 +64,7 @@ WebTokenEngine::get_from_idp(const DoutPrefixProvider* dpp, const std::string& t introspect_req.set_post_data(post_data); introspect_req.set_send_length(post_data.length()); - int res = introspect_req.process(); + int res = introspect_req.process(null_yield); if (res < 0) { ldpp_dout(dpp, 10) << "HTTP request res: " << res << dendl; throw -EINVAL; |