@@ -37,7 +37,6 @@ class MultigridController:
3737 murfey_url : str = "http://localhost:8000"
3838 rsync_url : str = ""
3939 rsync_module : str = "data"
40- demo : bool = False
4140 finalising : bool = False
4241 dormant : bool = False
4342 multigrid_watcher_active : bool = True
@@ -68,7 +67,6 @@ def __post_init__(self):
6867 client_id = 0 ,
6968 murfey_session = self .session_id ,
7069 software_versions = machine_data .get ("software_versions" , {}),
71- demo = self .demo ,
7270 visit = self .visit ,
7371 dose_per_frame = self .data_collection_parameters .get ("dose_per_frame" ),
7472 gain_ref = self .data_collection_parameters .get ("gain_ref" ),
@@ -80,7 +78,6 @@ def __post_init__(self):
8078 str (self ._environment .url .geturl ()),
8179 self .token ,
8280 instrument_name = self ._environment .instrument_name ,
83- demo = self ._environment .demo ,
8481 )
8582 self ._data_suffixes = (".mrc" , ".tiff" , ".tif" , ".eer" )
8683 self ._data_substrings = [
@@ -430,7 +427,7 @@ def rsync_result(update: RSyncerUpdate):
430427 "source" : str (source ),
431428 "destination" : destination ,
432429 "session_id" : self .session_id ,
433- "transferring" : self .do_transfer or self . _environment . demo ,
430+ "transferring" : self .do_transfer ,
434431 "tag" : tag ,
435432 }
436433 capture_post (
0 commit comments