mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 19:35:12 +00:00
If we initiate the shutdown while starting the group 0 server, we could catch `abort_requested_exception` in `start_server_for_group` and call `on_internal_error`. Then, Scylla aborts with a coredump. It causes problems in tests that shut down bootstrapping nodes. The `abort_requested_exception` can be thrown from `gossiper::lock_endpoint` called in `storage_service::topology_state_load`. So, the issue is new and applies only to the raft-based topology. Hence, there is no need to backport the patch. Fixes scylladb/scylladb#17794 Fixes scylladb/scylladb#18197 Closes scylladb/scylladb#18569