diff options
author | Iqbal Khan <iqkhan@redhat.com> | 2022-04-28 20:54:29 +0200 |
---|---|---|
committer | Iqbal Khan <iqkhan@redhat.com> | 2022-05-04 18:20:10 +0200 |
commit | 5e98b8b03676107e6c4604fcc80f4f9a6028e7d6 (patch) | |
tree | e622ec1c794f394d0dafd763516a6ecf7e5483fc /src/rgw/rgw_op.h | |
parent | Merge pull request #43371 from liavt/master (diff) | |
download | ceph-5e98b8b03676107e6c4604fcc80f4f9a6028e7d6.tar.xz ceph-5e98b8b03676107e6c4604fcc80f4f9a6028e7d6.zip |
rgw: user_quota and bucket_quota are defined under RGWQuota
struct RGWQuota {
RGWQuotaInfo user_quota;
RGWQuotaInfo bucket_quota;
};
Signed-off-by: Iqbal Khan <iqkhan@redhat.com>
Diffstat (limited to 'src/rgw/rgw_op.h')
-rw-r--r-- | src/rgw/rgw_op.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rgw/rgw_op.h b/src/rgw/rgw_op.h index f584d78a718..aa3ea4fdb42 100644 --- a/src/rgw/rgw_op.h +++ b/src/rgw/rgw_op.h @@ -178,8 +178,7 @@ protected: rgw::sal::Store* store; RGWCORSConfiguration bucket_cors; bool cors_exist; - RGWQuotaInfo bucket_quota; - RGWQuotaInfo user_quota; + RGWQuota quota; int op_ret; int do_aws4_auth_completion(); |