From: Samuel Just Date: Tue, 9 Sep 2025 22:47:38 +0000 (+0000) Subject: test/.../test_cbjournal: destroy CircularBoundedJournal instance prior to reactor... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F65394%2Fhead;p=ceph.git test/.../test_cbjournal: destroy CircularBoundedJournal instance prior to reactor shutdown Signed-off-by: Samuel Just --- diff --git a/src/test/crimson/seastore/test_cbjournal.cc b/src/test/crimson/seastore/test_cbjournal.cc index 47a08d68cbb4..10ef16964f9f 100644 --- a/src/test/crimson/seastore/test_cbjournal.cc +++ b/src/test/crimson/seastore/test_cbjournal.cc @@ -198,7 +198,10 @@ struct cbjournal_test_t : public seastar_test_suite_t, JournalTrimmer } seastar::future<> tear_down_fut() final { - return close(); + return close( + ).then([this] { + cbj.reset(); + }); } extent_t generate_extent(size_t blocks) {