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:
3061bef
)
Fix bug 1636: remove the default 30s timeout in retry
91/11191/1
author
David Garcia
<david.garcia@canonical.com>
Wed, 18 Aug 2021 15:35:50 +0000
(17:35 +0200)
committer
David Garcia
<david.garcia@canonical.com>
Thu, 23 Sep 2021 07:08:09 +0000
(09:08 +0200)
Change-Id: Ie6094ebb91d32c1dcb63dc718f4dbeaf2e07adda
Signed-off-by: David Garcia <david.garcia@canonical.com>
n2vc/n2vc_juju_conn.py
patch
|
blob
|
history
diff --git
a/n2vc/n2vc_juju_conn.py
b/n2vc/n2vc_juju_conn.py
index
2c94328
..
dc4f883
100644
(file)
--- a/
n2vc/n2vc_juju_conn.py
+++ b/
n2vc/n2vc_juju_conn.py
@@
-369,7
+369,7
@@
class N2VCJujuConnector(N2VCConnector):
# In case of native_charm is being deployed, if JujuApplicationExists error happens
# it will try to add_unit
- @retry(attempts=3, delay=5, retry_exceptions=(N2VCApplicationExists,))
+ @retry(attempts=3, delay=5, retry_exceptions=(N2VCApplicationExists,)
, timeout=None
)
async def install_configuration_sw(
self,
ee_id: str,