]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw/sal: Add default shutdown method to filters
authorAdam C. Emerson <aemerson@redhat.com>
Tue, 8 Apr 2025 17:14:16 +0000 (13:14 -0400)
committerAdam C. Emerson <aemerson@redhat.com>
Fri, 11 Apr 2025 16:27:12 +0000 (12:27 -0400)
It simply calls `next->shutdown()`.

Fixes: https://tracker.ceph.com/issues/70771
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
src/rgw/rgw_sal_filter.h

index 52e4a4120e7e1e414e08567c0345b2c641c53969..9c37fd32fe0fa2530f93c3b2fe764e76c90d1470 100644 (file)
@@ -488,6 +488,8 @@ public:
   virtual const std::string& get_compression_type(const rgw_placement_rule& rule) override;
   virtual bool valid_placement(const rgw_placement_rule& rule) override;
 
+  virtual void shutdown(void) override { next->shutdown(); };
+
   virtual void finalize(void) override;
 
   virtual CephContext* ctx(void) override;