Fix bug 1715 78/11278/2
authoraktas <emin.aktas@ulakhaberlesme.com.tr>
Tue, 19 Oct 2021 17:03:23 +0000 (20:03 +0300)
committergarciadav <david.garcia@canonical.com>
Wed, 20 Oct 2021 00:20:59 +0000 (02:20 +0200)
In sometimes, it cannot catch that if the application is in the model.
Jenkinks report: https://osm.etsi.org/jenkins/view/Robot%20tests/job/osm-stage_3-merge/job/v10.0/169/robot/report/report.html#tags?basic_20

Change-Id: I8121d57923d93b7af9ad60e07b87b4616060a916
Signed-off-by: aktas <emin.aktas@ulakhaberlesme.com.tr>
n2vc/libjuju.py

index b897bc6..6580067 100644 (file)
@@ -791,6 +791,13 @@ class Libjuju:
                 raise JujuApplicationExists(
                     "Application {} exists".format(application_name)
                 )
+        except juju.errors.JujuError as e:
+            if "already exists" in e.message:
+                raise JujuApplicationExists(
+                    "Application {} exists".format(application_name)
+                )
+            else:
+                raise e
         finally:
             await self.disconnect_model(model)
             await self.disconnect_controller(controller)