diff --git a/service/storage_service.cc b/service/storage_service.cc index b4976cd39f..7de4efecda 100644 --- a/service/storage_service.cc +++ b/service/storage_service.cc @@ -1934,7 +1934,7 @@ future<> storage_service::gossip_snitch_info() { future<> storage_service::gossip_sharding_info() { return _gossiper.add_local_application_state({ { gms::application_state::SHARD_COUNT, value_factory.shard_count(smp::count) }, - { gms::application_state::IGNORE_MSB_BITS, value_factory.ignore_msb_bits(dht::global_partitioner().sharding_ignore_msb()) }, + { gms::application_state::IGNORE_MSB_BITS, value_factory.ignore_msb_bits(_db.local().get_config().murmur3_partitioner_ignore_msb_bits()) }, }); }