We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64af131 commit 5bddaf3Copy full SHA for 5bddaf3
launchk/src/launchd/plist.rs
@@ -104,7 +104,7 @@ pub const SYSTEM_LAUNCH_DAEMONS: &str = "/System/Library/LaunchDaemons";
104
105
async fn fsnotify_subscriber() {
106
let (tx, rx): (Sender<DebounceEventResult>, Receiver<DebounceEventResult>) = channel();
107
- let mut debouncer = new_debouncer(Duration::from_secs(5), None, tx).unwrap();
+ let mut debouncer = new_debouncer(Duration::from_secs(5), tx).unwrap();
108
let watcher = debouncer.watcher();
109
110
// Register plist paths
0 commit comments