You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix clearInitialNodeNetworkUnavailableCondition() in sdn master
This change fixes these 2 issues:
- Currently, clearing NodeNetworkUnavailable node condition only works
if we are successful in updating the node status during the first iteration.
Subsequent retries will not work because:
1. knode != node
2. node.Status is updated in memory
3. knode.UpdateNodeStatus()
(3) will have no effect as in step (2) node.Status is updated but not knode.Status
- Node object passed to this method is pointer to an item in the informer
cache and it should not be modified directly.
0 commit comments