Skip to content

Commit e46bdf4

Browse files
committed
rgw/sal: Add default shutdown method to filters
It simply calls `next->shutdown()`. Fixes: https://tracker.ceph.com/issues/70771 Signed-off-by: Adam C. Emerson <[email protected]>
1 parent fdf6e01 commit e46bdf4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/rgw/rgw_sal_filter.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,8 @@ class FilterDriver : public Driver {
488488
virtual const std::string& get_compression_type(const rgw_placement_rule& rule) override;
489489
virtual bool valid_placement(const rgw_placement_rule& rule) override;
490490

491+
virtual void shutdown(void) override { next->shutdown(); };
492+
491493
virtual void finalize(void) override;
492494

493495
virtual CephContext* ctx(void) override;

0 commit comments

Comments
 (0)