If you run a lot of Harper instances, you may run out of watch handles. The quick local fix is:
sudo sysctl -w fs.inotify.max_user_instances=10000 (usually defaults to 512)
However, we might want a fallback mechanism in Harper for switching to polling if this error occurs (Chokidar mentions this as a possibility in its documentation, but doesn't automate this).
If you run a lot of Harper instances, you may run out of watch handles. The quick local fix is:
sudo sysctl -w fs.inotify.max_user_instances=10000(usually defaults to 512)However, we might want a fallback mechanism in Harper for switching to polling if this error occurs (Chokidar mentions this as a possibility in its documentation, but doesn't automate this).