mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 04:06:59 +00:00
The db::config reference is available on the database, which can be get from the virtual_table itself. The problem is that it's a const refernece, while system.config will be updateable and will need non-const reference. Adding non-const get_config() on the database looks wrong. The database shouldn't be used as config provider, even the const one. Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>