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
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:
try:
operators.client.apply(node)
except Exception:
logger.error("fail to apply")
class DynamicRightSelectTimer(Timer):