File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
installation_and_upgrade/ibex_install_utils Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -215,9 +215,12 @@ def run_instrument_deploy_pre_stop(self):
215215 self ._system_tasks .user_confirm_upgrade_type_on_machine ('Client/Server Machine' )
216216
217217 # Check whether inst is SECI or not
218- central_inst_info = g .get_pv ("CS:INSTLIST" )
219- central_inst_info = FileUtils .dehex_and_decompress (bytes (central_inst_info , encoding = "utf8" )).decode ("utf-8" )
220- central_inst_info = json .loads (central_inst_info )
218+ try :
219+ central_inst_info = g .get_pv ("CS:INSTLIST" )
220+ central_inst_info = FileUtils .dehex_and_decompress (bytes (central_inst_info , encoding = "utf8" )).decode ("utf-8" )
221+ central_inst_info = json .loads (central_inst_info )
222+ except :
223+ central_inst_info = {}
221224
222225 central_specific_inst_info = None
223226 for inst in central_inst_info :
You can’t perform that action at this time.
0 commit comments