-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to exclude certain files when using recursive watch #48
Comments
I personally use |
Unless you're individually calling it file-by-file, inotify watches directories, not files. You'll just need to filter out the events after the fact. |
Just ran into this problem when using docker. I had a volume for postgresql data owned by root in my project, and rb-inotify just crashed. I'm moving it elsewhere as a workaround, but it would be nice to ignore it and not crash. Maybe that is a Linux problem and there is nothing that the library can do. |
Having the same issue right now. It looks like overriding Also the check for the recursive blacklist have to be before the call to Maybe making it configurable with an ENV variable would be a simpler solution? It would help gems like |
We need to be able to exclude certain files when using recursive watch. Currently i did not find anything. Does it already exist? How do we use it?
The text was updated successfully, but these errors were encountered: