Fix git rebase problems, and the failing doctest

This commit is contained in:
Zsombor Gegesy 2023-09-14 20:26:08 +02:00
parent 1e7805cf42
commit e69126c5ea
6 changed files with 121 additions and 15 deletions

View file

@ -20,8 +20,6 @@ pub struct Config {
/// It stores the redis connection url address on which the redis
/// client should connect.
pub redis_url: Option<String>,
/// enable/disable the in-memory cache. Only checked, when no redis_url is provided.
pub in_memory_cache: bool,
/// It stores the option to whether enable or disable production use.
pub aggregator: AggregatorConfig,
/// It stores the option to whether enable or disable logs.
@ -102,10 +100,6 @@ impl Config {
globals.get::<_, String>("colorscheme")?,
),
redis_url: globals.get::<_, String>("redis_url").ok(),
in_memory_cache: globals
.get::<_, bool>("in_memory_cache")
.ok()
.unwrap_or(false),
aggregator: AggregatorConfig {
random_delay: globals.get::<_, bool>("production_use")?,
},