Skip to content

v0.6.1: make unwatching when we hit "too many open files" deterministic

Choose a tag to compare

@github-actions github-actions released this 29 Oct 21:19
· 12 commits to main since this release
Also clarify in the log message that it's the number of directories watched,
not number of files watched. We don't actually know the number of files watched
since we only add directories to the watcher. On kqueue (macOS) that translates
to one file descriptor used per directory and one file decriptor used per file,
while on inotify (Linux) only needs one file descriptor per directory
(https://news.ycombinator.com/item?id=9063910).