We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to this Issue, it should be fixed. However, I'm getting an error while trying to listen to the same folder from two different observers:
observer = Observer() input_dir = "/tmp" observer.schedule(PatternMatchingEventHandler(), input_dir, recursive=True) observer.start() observer2 = Observer() observer2.schedule(PatternMatchingEventHandler(), input_dir, recursive=True) observer2.start()
Triggers:
ERROR:Unhandled exception in FSEventsEmitter Traceback (most recent call last): File "/opt/homebrew/lib/python3.10/site-packages/watchdog/observers/fsevents.py", line 315, in run _fsevents.add_watch(self, self.watch, self.events_callback, self.pathnames) RuntimeError: Cannot add watch <ObservedWatch: path=/tmp, is_recursive=True> - it is already scheduled
python 3.10 macOS 12.6 M1 (arm64) watchdog-2.1.9
The text was updated successfully, but these errors were encountered:
Running with watchdog 4.0.0 and still seems to be an issue
watchdog 4.0.0
Sorry, something went wrong.
No branches or pull requests
According to this Issue, it should be fixed. However, I'm getting an error while trying to listen to the same folder from two different observers:
Triggers:
python 3.10
macOS 12.6 M1 (arm64)
watchdog-2.1.9
The text was updated successfully, but these errors were encountered: