feat: prevent to crash on apply

This commit is contained in:
Swann Martinez 2019-10-03 18:30:46 +02:00
parent 2e9c3a48a2
commit 7afb80864e
No known key found for this signature in database
GPG Key ID: 414CCAFD8DA720E1
2 changed files with 5 additions and 2 deletions

View File

@ -71,7 +71,10 @@ class ApplyTimer(Timer):
node_ref = operators.client.get(uuid=node)
if node_ref.state == FETCHED:
operators.client.apply(node)
try:
operators.client.apply(node)
except Exception:
logger.error("fail to apply")
class DynamicRightSelectTimer(Timer):

@ -1 +1 @@
Subproject commit 8bb4626c7b2ccc8d8fe01033219e81ac29143fce
Subproject commit bd411f7dbb4079efb346b791df5ed7fd465349e7