You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the API Documentation, one could assume that WatchManager.del_watch does the same job as WatchManager.rm_watch, when in fact the former only deletes the watch manager's internal reference while the latter actually removes it from the inotify thread.
This is clear from the code, but when looking for a way to unregister a watch, I did not read every method in the WM doc and used the first one that (I thought) matched my requirements.
The text was updated successfully, but these errors were encountered:
Hi,
Looking at the API Documentation, one could assume that
WatchManager.del_watch
does the same job asWatchManager.rm_watch
, when in fact the former only deletes the watch manager's internal reference while the latter actually removes it from the inotify thread.This is clear from the code, but when looking for a way to unregister a watch, I did not read every method in the WM doc and used the first one that (I thought) matched my requirements.
The text was updated successfully, but these errors were encountered: