storage_service: topology coordinator: ignore abort_requested_exception in background fibers

The exception may be thrown by "event" CV during shutdown.
This commit is contained in:
Gleb Natapov
2023-11-30 13:34:58 +02:00
parent 8ed8b151da
commit 3ddc1458ee

View File

@@ -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&) {