mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-09 08:23:29 +00:00
locator::gossiping_property_file_snitch: make get_name() public as it should be
Signed-off-by: Vlad Zolotarov <vladz@cloudius-systems.com>
This commit is contained in:
@@ -73,15 +73,14 @@ public:
|
||||
virtual future<> start() override;
|
||||
virtual future<> pause_io() override;
|
||||
virtual void resume_io() override;
|
||||
virtual sstring get_name() const override {
|
||||
return "org.apache.cassandra.locator.GossipingPropertyFileSnitch";
|
||||
}
|
||||
|
||||
gossiping_property_file_snitch(
|
||||
const sstring& fname = snitch_properties_filename,
|
||||
unsigned io_cpu_id = 0);
|
||||
|
||||
virtual sstring get_name() const override {
|
||||
return "org.apache.cassandra.locator.GossipingPropertyFileSnitch";
|
||||
}
|
||||
|
||||
private:
|
||||
void throw_double_declaration(const sstring& key) const {
|
||||
logger().error("double \"{}\" declaration in {}", key, _fname);
|
||||
|
||||
Reference in New Issue
Block a user