diff options
author | Adam C. Emerson <aemerson@redhat.com> | 2020-11-11 15:36:23 +0100 |
---|---|---|
committer | Adam C. Emerson <aemerson@redhat.com> | 2020-11-13 20:35:15 +0100 |
commit | 5760fb630e011dcbce2f7adcc30c83539af07373 (patch) | |
tree | 0148a558e3568b594b4f13ca159592e32ca6245d /src/rgw/rgw_period_puller.h | |
parent | rgw: No null_yield in RGWOp (diff) | |
download | ceph-5760fb630e011dcbce2f7adcc30c83539af07373.tar.xz ceph-5760fb630e011dcbce2f7adcc30c83539af07373.zip |
rgw: No null_yield in rgw_zone
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
Diffstat (limited to 'src/rgw/rgw_period_puller.h')
-rw-r--r-- | src/rgw/rgw_period_puller.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rgw/rgw_period_puller.h b/src/rgw/rgw_period_puller.h index d1a852cb9ef..7ac5cc8dce5 100644 --- a/src/rgw/rgw_period_puller.h +++ b/src/rgw/rgw_period_puller.h @@ -6,6 +6,7 @@ #include "rgw_period_history.h" #include "include/common_fwd.h" +#include "rgw/services/svc_sys_obj.h" class RGWPeriod; @@ -20,7 +21,7 @@ class RGWPeriodPuller : public RGWPeriodHistory::Puller { public: explicit RGWPeriodPuller(RGWSI_Zone *zone_svc, RGWSI_SysObj *sysobj_svc); - int pull(const std::string& period_id, RGWPeriod& period) override; + int pull(const std::string& period_id, RGWPeriod& period, optional_yield y) override; }; #endif // CEPH_RGW_PERIOD_PULLER_H |