From: David Garcia Date: Mon, 6 Apr 2020 10:55:23 +0000 (+0200) Subject: Fix bug 1049: Raise exception if model does not exist when destroying a model X-Git-Tag: v7.1.0rc1~12 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=commitdiff_plain;h=e1ac987fe886211cb1b09d2e6723584dcefd03ee Fix bug 1049: Raise exception if model does not exist when destroying a model Change-Id: I7bc64f296d6cff695511be77a5445241a1175d8a Signed-off-by: David Garcia --- diff --git a/n2vc/n2vc_juju_conn.py b/n2vc/n2vc_juju_conn.py index dbd904c..0485e69 100644 --- a/n2vc/n2vc_juju_conn.py +++ b/n2vc/n2vc_juju_conn.py @@ -1288,6 +1288,12 @@ class N2VCJujuConnector(N2VCConnector): total_timeout = 3600 model = await self._juju_get_model(model_name=model_name) + + if not model: + raise N2VCException( + message="Model {} does not exist".format(model_name) + ) + uuid = model.info.uuid # destroy applications