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
I suspect it might be caused by the JVM's underlying use of inotify on Linux to support filesystem watches. From the inotify man page:
If monitoring an entire directory subtree, and a new subdirectory is created in that tree, be aware that by the time you create a watch for the new subdirectory, new files may already have been created in the subdirectory. Therefore, you may want to scan the contents of the subdirectory immediately after adding the watch.
Steps to repeat issue:
{ "widgets" / id + ".json" }
widgets/
watch()
to observe changescreate(E)
methodExpected results:
The watch observer emits an event indicating the entity exists
Actual results:
The watch observer doesn't emit anything
The text was updated successfully, but these errors were encountered: