From: Mark Huang Date: Fri, 12 Jan 2007 19:11:17 +0000 (+0000) Subject: - handle BootAPI failures gracefully X-Git-Tag: planetlab-4_0-rc1~9 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=8381dfe5e46033ee8003bc2e3536002caf64bc16;p=bootmanager.git - handle BootAPI failures gracefully --- diff --git a/source/steps/UpdateBootStateWithPLC.py b/source/steps/UpdateBootStateWithPLC.py index 001dcd9..cb9cff3 100644 --- a/source/steps/UpdateBootStateWithPLC.py +++ b/source/steps/UpdateBootStateWithPLC.py @@ -30,10 +30,11 @@ def Run( vars, log ): update_vals= {} update_vals['boot_state']= vars['BOOT_STATE'] - BootAPI.call_api_function( vars, "BootUpdateNode", (update_vals,) ) - - log.write( "Successfully updated boot state for this node at PLC\n" ) - + try: + BootAPI.call_api_function( vars, "BootUpdateNode", (update_vals,) ) + log.write( "Successfully updated boot state for this node at PLC\n" ) + except BootManagerException, e: + log.write( "Unable to update boot state for this node at PLC: %s.\n" % e ) notify = vars.get("STATE_CHANGE_NOTIFY",0)