File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 45
45
except ImportError :
46
46
raise ImportError ('Require labscript_utils > 2.1.0' )
47
47
48
- check_version ('labscript_utils' , '2.7.1 ' , '3' )
48
+ check_version ('labscript_utils' , '2.7.2 ' , '3' )
49
49
check_version ('qtutils' , '2.0.0' , '3.0.0' )
50
50
check_version ('zprocess' , '1.1.2' , '3' )
51
51
check_version ('labscript_devices' , '2.0' , '3' )
@@ -697,7 +697,7 @@ def process(self,h5_filepath):
697
697
# Create Connection Table object
698
698
logger .info ('About to load connection table: %s' % exp_config .get ('paths' ,'connection_table_h5' ))
699
699
connection_table_h5_file = exp_config .get ('paths' ,'connection_table_h5' )
700
- connection_table = ConnectionTable (connection_table_h5_file , logging_prefix = 'BLACS' )
700
+ connection_table = ConnectionTable (connection_table_h5_file , logging_prefix = 'BLACS' , exceptions_in_thread = True )
701
701
702
702
logger .info ('connection table loaded' )
703
703
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def restore(self):
76
76
error = {}
77
77
tab_data = {'BLACS settings' :{}}
78
78
try :
79
- saved_ct = ConnectionTable (self .settings_path , logging_prefix = 'BLACS' )
79
+ saved_ct = ConnectionTable (self .settings_path , logging_prefix = 'BLACS' , exceptions_in_thread = True )
80
80
ct_match ,error = self .connection_table .compare_to (saved_ct )
81
81
82
82
with h5py .File (self .settings_path ,'r' ) as hdf5_file :
You can’t perform that action at this time.
0 commit comments