summaryrefslogtreecommitdiffstats
path: root/src/rgw/services/svc_user_rados.cc
diff options
context:
space:
mode:
authorAli Maredia <amaredia@redhat.com>2023-01-17 21:28:05 +0100
committerAli Maredia <amaredia@redhat.com>2023-01-24 20:04:01 +0100
commit1e6670141301b7222d013e8ec5d8d7f9470787da (patch)
tree2442de155b86f98aaf7c4d5fc5f9a5c59a0fe1c3 /src/rgw/services/svc_user_rados.cc
parentrgw: add conditional backtrace logging after "WARNING: blocking librados call" (diff)
downloadceph-1e6670141301b7222d013e8ec5d8d7f9470787da.tar.xz
ceph-1e6670141301b7222d013e8ec5d8d7f9470787da.zip
rgw: stop blocking for asio threads for create_bucket()
Asio thread for create_bucket operation are no longer blocked because optional yield is passed down in previous instances where asio threads for op were blocked. Signed-off-by: Ali Maredia <amaredia@redhat.com>
Diffstat (limited to 'src/rgw/services/svc_user_rados.cc')
-rw-r--r--src/rgw/services/svc_user_rados.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/services/svc_user_rados.cc b/src/rgw/services/svc_user_rados.cc
index 3226e435e51..c99af935415 100644
--- a/src/rgw/services/svc_user_rados.cc
+++ b/src/rgw/services/svc_user_rados.cc
@@ -898,7 +898,7 @@ int RGWSI_User_RADOS::read_stats(const DoutPrefixProvider *dpp,
RGWUserInfo info;
real_time mtime;
- int ret = read_user_info(ctx, user, &info, nullptr, &mtime, nullptr, nullptr, null_yield, dpp);
+ int ret = read_user_info(ctx, user, &info, nullptr, &mtime, nullptr, nullptr, y, dpp);
if (ret < 0)
{
return ret;