diff --git a/plugins/yjs/fps_yjs/ydocs/ydrive.py b/plugins/yjs/fps_yjs/ydocs/ydrive.py index a5d7388e..761bc885 100644 --- a/plugins/yjs/fps_yjs/ydocs/ydrive.py +++ b/plugins/yjs/fps_yjs/ydocs/ydrive.py @@ -51,6 +51,7 @@ async def __aenter__(self) -> YDrive: async def _process_file_changes(self): async for change in self._watcher: + print(f"{change=}") change_, path = change # no exception should stop watching the file system try: diff --git a/plugins/yjs/tests/test_ydocs.py b/plugins/yjs/tests/test_ydocs.py index 5343d702..1d79a699 100644 --- a/plugins/yjs/tests/test_ydocs.py +++ b/plugins/yjs/tests/test_ydocs.py @@ -17,7 +17,7 @@ async def call(func): return res -async def assert_with_timeout(func, timeout=60): +async def assert_with_timeout(func, timeout=100): dt = 0.1 tt = 0 while True: