Skip to content

Commit

Permalink
fix: config watcher follow symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubbleioa committed May 10, 2024
1 parent 0ee0157 commit 5017970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ async fn config_watcher(
Err(e) => error!("watch error: {:#}", e),
})?;

watcher.watch(parent_path, RecursiveMode::NonRecursive)?;
watcher.watch(parent_path, RecursiveMode::Recursive)?;
info!("Start watching the config");

loop {
Expand Down

0 comments on commit 5017970

Please sign in to comment.