diff --git a/service/storage_service.cc b/service/storage_service.cc index 98132954ed..aaae43b3d8 100644 --- a/service/storage_service.cc +++ b/service/storage_service.cc @@ -1385,6 +1385,8 @@ class topology_coordinator { } } catch (raft::request_aborted&) { slogger.debug("raft topology: CDC generation publisher fiber aborted"); + } catch (seastar::abort_requested_exception) { + slogger.debug("raft topology: CDC generation publisher fiber aborted"); } catch (group0_concurrent_modification&) { } catch (term_changed_error&) { slogger.debug("raft topology: CDC generation publisher fiber notices term change {} -> {}", _term, _raft.get_current_term()); @@ -2640,6 +2642,8 @@ future<> topology_coordinator::run() { } } catch (raft::request_aborted&) { slogger.debug("raft topology: topology change coordinator fiber aborted"); + } catch (seastar::abort_requested_exception&) { + slogger.debug("raft topology: topology change coordinator fiber aborted"); } catch (raft::commit_status_unknown&) { slogger.warn("raft topology: topology change coordinator fiber got commit_status_unknown"); } catch (group0_concurrent_modification&) {