- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 592
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
The watcher does not recognize file changes when the outer directory got deleted once. #1042
Comments
I have exactly the same problem. That raises the question for me how this can come about. Are the paths cached in the background and not properly deleted from the cache when the underlying file system structure changes? Or what exactly is the explanation for this, because the same problem occurs with the activated option 'usePolling: true'. So it cannot be explained by a missing event from the filesystem. Some information about the implementation would be very helpful to understand this behavior. Thanks in advance. |
Hi guys, I would also appreciate help with this behavior. |
I think I found an already closed issue #404 to our problem. It seems the 'rename' event of the fs.watch is not delegated or interpreted by chokidar. From the documentation of fs.watch:
|
This should be fixed somehow, ... |
After some investigation, I was able to reproduce and fix the bug! Problem: If a relative path was passed when calling chokidar.watch, it was processed internally as a symlink. Unfortunately, there was a bug in the handling of symlinks, which were never removed from the internal collection when the target path was deleted. This then resulted in an incorrect state when the path was recreated. Workaround for the current version: Only use absolute paths as watch directory and avoid watching folders with symlinks. Solution: There are several possible solutions to fix the error. In my merge request, I decided to take the most obvious and minimally invasive approach. I simply added a line of code to remove the symlinks from the collection if the target path was removed. However, at first glance I don't see any reason why a relative path has to be recognized as a symlink. Risk and Recommendation: Unfortunately, I had to realize that the bug has a larger scope than I had assumed. |
PERFECT! THX!
|
Merge bugfix/#1042 into paulmillr/chokidar:master
@paulmillr Thank you very much for processing my MR so quickly. That would be really great! |
Whenever I create a folder, then remove it, create it again, and then try to add files in the directory, the watcher does not recognize any file changes.
Versions:
To Reproduce:
index.js:
execute it. Then...
mkdir test mkdir test/dir rm -r test/dir mkdir test/dir touch test/dir/file
output:
addDir test addDir test/dir unlinkDir test/dir addDir test/dir
Expected behavior
output:
addDir test addDir test/dir unlinkDir test/dir addDir test/dir add test/dir/file
The text was updated successfully, but these errors were encountered: