Bug 2055 fixed: raising JujuControllerFailedConnecting with error message
Change-Id: Ie4f3fa92ffd7e7263733d2364ed794a2262f00a4
Signed-off-by: Pedro Escaleira <escaleira@av.it.pt>
diff --git a/n2vc/libjuju.py b/n2vc/libjuju.py
index a5b4d7e..7b01d5d 100644
--- a/n2vc/libjuju.py
+++ b/n2vc/libjuju.py
@@ -121,7 +121,10 @@
)
if controller:
await self.disconnect_controller(controller)
- raise JujuControllerFailedConnecting(e)
+
+ raise JujuControllerFailedConnecting(
+ f"Error connecting to Juju controller: {e}"
+ )
async def disconnect(self):
"""Disconnect"""