Clean up configuration
Breaking config file change
Notably, this MR removes the [global]
section from the configuration file. For example, if you had a config like this:
[global]
server_name = "example.com"
database_backend = "rocksdb"
Then after this MR, the config will need to be adjusted to look like this:
server_name = "example.com"
database_backend = "rocksdb"
Edited by Charles Hall