projects
/
osm
/
N2VC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58a0cb7
)
Skip exception if model doesn't exist after delete failure
98/11998/1
author
David Garcia
<david.garcia@canonical.com>
Tue, 3 May 2022 10:23:59 +0000
(12:23 +0200)
committer
garciadav
<david.garcia@canonical.com>
Tue, 3 May 2022 12:23:15 +0000
(14:23 +0200)
- bug: 2018
Change-Id: I9d118602c747840a4a32fd670c8724c82c1ee094
Signed-off-by: David Garcia <david.garcia@canonical.com>
(cherry picked from commit
5c96662b238a20ecc7c516269a0b051e3b0333eb
)
n2vc/libjuju.py
patch
|
blob
|
history
diff --git
a/n2vc/libjuju.py
b/n2vc/libjuju.py
index
6bc9be7
..
a5b4d7e
100644
(file)
--- a/
n2vc/libjuju.py
+++ b/
n2vc/libjuju.py
@@
-1179,6
+1179,10
@@
class Libjuju:
controller,
timeout=total_timeout,
)
+ except Exception as e:
+ if not await self.model_exists(model_name, controller=controller):
+ return
+ raise e
finally:
if model:
await self.disconnect_model(model)