diff --git a/syndicate-server/src/services/config_watcher.rs b/syndicate-server/src/services/config_watcher.rs index 669c364..964f345 100644 --- a/syndicate-server/src/services/config_watcher.rs +++ b/syndicate-server/src/services/config_watcher.rs @@ -144,7 +144,7 @@ fn run(t: &mut Activation, ds: Arc, spec: internal_services::ConfigWatcher) tracing::info!("watching {:?}", &path); let (tx, rx) = channel(); - let mut watcher = watcher(tx, Duration::from_secs(1)).map_err(convert_notify_error)?; + let mut watcher = watcher(tx, Duration::from_millis(100)).map_err(convert_notify_error)?; watcher.watch(&path, RecursiveMode::Recursive).map_err(convert_notify_error)?; let facet = t.facet.clone();