cdc: Remove bootstrap state assertion from after_join()

As was described in the previous patch, this method is explicitly called
by storage service after updating the bootstrap state, so it's unneeded

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>
This commit is contained in:
Pavel Emelyanov
2023-08-14 13:17:50 +03:00
parent 566f57b683
commit 4bf8f693ee

View File

@@ -776,7 +776,6 @@ generation_service::~generation_service() {
future<> generation_service::after_join(std::optional<cdc::generation_id>&& startup_gen_id) {
assert_shard_zero(__PRETTY_FUNCTION__);
assert(_sys_ks.local().bootstrap_complete());
_gen_id = std::move(startup_gen_id);
_gossiper.register_(shared_from_this());