summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_rest_sts.cc
diff options
context:
space:
mode:
authorCasey Bodley <cbodley@redhat.com>2018-11-24 02:46:47 +0100
committerCasey Bodley <cbodley@redhat.com>2019-03-29 04:39:42 +0100
commit848f20cbc5bf9ec79e3636b4986a86298468c188 (patch)
tree2a541b70b1eb8a530ebe3d94238c02eaa3b37535 /src/rgw/rgw_rest_sts.cc
parentMerge pull request #27243 from theanalyst/doc-scheduler (diff)
downloadceph-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.cc2
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;