More changes for projects support
Signed-off-by: Philip Joseph <philip.joseph@riftio.com>
diff --git a/common/python/rift/mano/utils/project.py b/common/python/rift/mano/utils/project.py
index 9157f89..96d1de5 100644
--- a/common/python/rift/mano/utils/project.py
+++ b/common/python/rift/mano/utils/project.py
@@ -651,12 +651,14 @@
except Exception as e:
self._log.exception("Project {} create for {} failed: {}".
format(name, self._get_tasklet_name(), e))
+ raise e
try:
yield from self._get_project(name).register()
except Exception as e:
self._log.exception("Project {} register for tasklet {} failed: {}".
format(name, self._get_tasklet_name(), e))
+ raise e
@asyncio.coroutine
def on_delete_prepare(self, name):