feat: prevent to crash on apply
This commit is contained in:
parent
2e9c3a48a2
commit
7afb80864e
@ -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
|
Loading…
x
Reference in New Issue
Block a user