Change default config to enable LTS sufficiently that local stats are gathered and its ready to try.

This commit is contained in:
Herbert Wolverson 2024-05-23 12:41:22 -05:00
parent 58f898e0f0
commit 6c3347b339

View File

@ -25,10 +25,10 @@ pub struct LongTermStats {
impl Default for LongTermStats {
fn default() -> Self {
Self {
gather_stats: false,
gather_stats: true,
collation_period_seconds: 10,
license_key: None,
uisp_reporting_interval_seconds: None,
uisp_reporting_interval_seconds: Some(300),
}
}
}