From da1aeb81d196081354c4da3b71abf4e96cdc063b Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 17 Jul 2009 13:55:10 +0000 Subject: [PATCH] dont raise exception, just print it and move on --- sfa/plc/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/plc/nodes.py b/sfa/plc/nodes.py index e103a3d0..dcf835dc 100644 --- a/sfa/plc/nodes.py +++ b/sfa/plc/nodes.py @@ -123,7 +123,7 @@ class Nodes(SimpleStorage): print >> log, "Error calling list nodes at aggregate %s" % aggregate traceback.print_exc(log) exc_type, exc_value, exc_traceback = sys.exc_info() - raise exc_type, exc_value + print exc_type, exc_value, exc_traceback # create the rspec dict resources = {'networks': networks, 'start_time': start_time, 'duration': duration} resourceDict = {'Rspec': resources} -- 2.43.0