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 17a725d commit 80de8b0Copy full SHA for 80de8b0
src/murfey/client/multigrid_control.py
@@ -468,7 +468,13 @@ def rsync_result(update: RSyncerUpdate):
468
session_id=self._environment.murfey_session,
469
data=rsyncer_data,
470
)
471
- self._environment.watchers[source] = DirWatcher(source, settling_time=30)
+ self._environment.watchers[source] = DirWatcher(
472
+ source,
473
+ settling_time=30,
474
+ substrings_blacklist=self._machine_config.get(
475
+ "substrings_blacklist", {"directories": [], "files": []}
476
+ ),
477
+ )
478
479
if not self.analysers.get(source) and analyse:
480
log.info(f"Starting analyser for {source}")
0 commit comments