mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-31 03:56:42 +00:00
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:
@@ -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&) {
|
||||
|
||||
Reference in New Issue
Block a user