From 5ad14acf5c03913f6f75850d067d72acd9fc3ea3 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Tue, 10 Mar 2020 20:47:31 +0100 Subject: [PATCH] Disable conflict check by default, as it yields a lot of false positives and doesn't provide much value. See #177 --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 8acf48d..9244868 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -47,7 +47,7 @@ fn default_filter_title() -> String{ "".to_owned() } fn default_filter_class() -> String{ "".to_owned() } fn default_filter_exec() -> String{ "".to_owned() } fn default_log_level() -> i32 { 0 } -fn default_conflict_check() -> bool{ true } +fn default_conflict_check() -> bool{ false } fn default_ipc_server_port() -> i32 { 34982 } fn default_use_system_agent() -> bool { true } fn default_config_caching_interval() -> i32 { 800 }