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 9c2eb31 commit fc94bb0Copy full SHA for fc94bb0
src/murfey/client/multigrid_control.py
@@ -37,6 +37,7 @@ class MultigridController:
37
rsync_url: str = ""
38
rsync_module: str = "data"
39
demo: bool = False
40
+ finalising: bool = False
41
dormant: bool = False
42
multigrid_watcher_active: bool = True
43
processing_enabled: bool = True
@@ -184,6 +185,7 @@ def abandon(self):
184
185
p.request_stop()
186
187
def finalise(self):
188
+ self.finalising = True
189
for a in self.analysers.values():
190
a.request_stop()
191
log.debug(f"Stop request sent to analyser {a}")
0 commit comments