feat: prevent to crash on apply
This commit is contained in:
@ -71,7 +71,10 @@ class ApplyTimer(Timer):
|
|||||||
node_ref = operators.client.get(uuid=node)
|
node_ref = operators.client.get(uuid=node)
|
||||||
|
|
||||||
if node_ref.state == FETCHED:
|
if node_ref.state == FETCHED:
|
||||||
|
try:
|
||||||
operators.client.apply(node)
|
operators.client.apply(node)
|
||||||
|
except Exception:
|
||||||
|
logger.error("fail to apply")
|
||||||
|
|
||||||
|
|
||||||
class DynamicRightSelectTimer(Timer):
|
class DynamicRightSelectTimer(Timer):
|
||||||
|
Submodule multi_user/libs/replication updated: 8bb4626c7b...bd411f7dbb
Reference in New Issue
Block a user