-
-
Notifications
You must be signed in to change notification settings - Fork 180
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
Spurious FSEventStreamStart log messages on OS X #248
Comments
Can you please provide the corresponding OS X point version and |
OS X 10.10.3 (14D136)
There is a pending update to 10.10.4 from the App Store - maybe I should install that. |
@aaronc Thanks, and yes if you can test on 10.10.4 that would be helpful as well. |
I have the same problem with the same boot version and OS X version. The update to 10.10.4 didn't fix it. |
Replied in the group thread, but I found this PR for libuv from 2013 when they had the issue, and an older post that describe the problem. Apparently there are too many filesystem-change watch processes with large file sets on the same device. The fix implemented in libuv appears to be to use a single watcher for a device and filter the changes on notification to the ones you're really interested in. |
Yeah I figured it out myself just now, I added "target" to resources to serve files properly with pedestal, and triggered an infinite watch loop. (set-env! :resource-paths #(disj % "target")) before the development task fixed it. Thanks anyway kirked. |
Same thing for me when I'm building uberjar! Though removing "target" from |
I’m encountering the same problem for all boot tasks, including Restarting my computer does not resolve the problem; clearing the I'm using OS X 10.11 (15A284).
|
I've determined the problem after finding a related node.js issue. Three days ago, I installed two NPM modules into a node_modules subfolder within my source tree, in order to have them appear in my target directory. Removing the node_modules folder and, once more, clearing |
I'm looking into this right now and it seems very much possible. |
Wouldn't the best fix be to prevent watching directories that contain too many files? Rather than forcing the user to explicitly exclude them? |
FYI i'm seeing this on OS X 10.12.3
|
This PR allows exclusion of certain directories from being watched. These changes could probably affect the issues outlined here. |
FWIW this also seems like an interesting observation but not sure how applicable that is to Boot. |
Is this happening for anyone? I am on 10.14.2 with no issues and large directories. |
Closing for now, please reopen if still an issue. |
See this thread for details: https://groups.google.com/forum/#!topic/clojurescript/KUcELEvX18A
The text was updated successfully, but these errors were encountered: