-
Notifications
You must be signed in to change notification settings - Fork 210
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
FileSystemException: Failed to watch path, path = 'XXXX' (OS Error: No space left on device, errno = 28) #1711
Labels
Comments
matanlurey
added
type-enhancement
A request for a change that isn't a bug
package:build_runner
area-webdev
labels
Aug 4, 2018
Yeah, we do want a better error message for this. Tracking at #867 |
Can't thank you enough for this. Same machine, same problem ! Solution solved it |
Thank you for the solution 💯 👍 |
echo 1048576 > /proc/sys/fs/inotify/max_user_watches Thank you for figuring this out and solving the problem :) |
Thank you for the solution 👍 |
How to fix? |
@tony123S you will need to enter the command as root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Dart SDK Version :2.0.0-dev.69.1 (Fri Jul 20 18:30:52 2018 +0200) on "linux_x64"
build_runner 0.9.2
I ran into this issue on Fedora 28 Workstation. When running webdev (through webstorm, but also command line) it throws a failed to watch path error due to errno 28. This was using a vanilla installation of dart-sdk (and webstorm). And creating the default Dart projects
I could not find any issues reporting this in dart, but I was able to resolve the issue by increasing the maximum number of watchers in inotify from 8192 which was the default.
or more permanently with editing /etc/sysctl.conf and adding.
At least a more informative error would be helpful, as "No Space left on device" is misleading.
The text was updated successfully, but these errors were encountered: