We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f55ae6 commit 02ccd47Copy full SHA for 02ccd47
src/murfey/client/rsync.py
@@ -219,6 +219,10 @@ def enqueue(self, file_path: Path):
219
absolute_path = self._basepath / file_path
220
self.queue.put(absolute_path)
221
222
+ def flush_skipped(self):
223
+ for f in self._skipped_files:
224
+ self.queue.put(f)
225
+
226
def _process(self):
227
logger.info("RSync thread starting")
228
files_to_transfer: list[Path]
0 commit comments