From 7b7f69b4156dc7a465fc5dbf2be05d4a0180ef13 Mon Sep 17 00:00:00 2001 From: Edison Su Date: Tue, 7 Aug 2012 18:03:58 -0700 Subject: [PATCH] CS-10929: Pass error string when raising CloudInternalException RB: https://reviews.apache.org/r/6449/ Send-by: andy@basho.com --- python/lib/cloudutils/syscfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lib/cloudutils/syscfg.py b/python/lib/cloudutils/syscfg.py index e8ddcf71069..731b4c71abf 100755 --- a/python/lib/cloudutils/syscfg.py +++ b/python/lib/cloudutils/syscfg.py @@ -73,7 +73,7 @@ class sysConfig(object): for service in self.services: if not service.configration(): - raise CloudInternalException() + raise CloudInternalException("Configuration failed for service %s" % service.serviceName) def restore(self): for service in self.services: