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 a1996a9 commit df0719cCopy full SHA for df0719c
src/murfey/client/multigrid_control.py
@@ -133,6 +133,7 @@ def _start_rsyncer_multigrid(
133
remove_files=remove_files,
134
tag=tag,
135
limited=limited,
136
+ transfer=machine_data.get("data_transfer_enabled", True),
137
)
138
self.ws.send(json.dumps({"message": "refresh"}))
139
src/murfey/util/config.py
@@ -35,6 +35,7 @@ class MachineConfig(BaseModel):
35
data_required_substrings: Dict[str, Dict[str, List[str]]] = {}
36
allow_removal: bool = False
37
modular_spa: bool = False
38
+ data_transfer_enabled: bool = True
39
processing_enabled: bool = True
40
machine_override: str = ""
41
processed_extra_directory: str = ""
0 commit comments