Skip to content

Commit

Permalink
Fix member status propagation (#1416)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwierzbo authored Sep 21, 2023
1 parent 6473fc9 commit 0ba84dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/deployment/reconcile/action_member_status_sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ func (a *actionMemberStatusSync) Start(ctx context.Context) (bool, error) {
if _, err := cache.ArangoMemberModInterface().V1().UpdateStatus(nctx, amemberc, meta.UpdateOptions{}); err != nil {
return false, errors.WithStack(err)
}

if err := cache.Refresh(nctx); err != nil {
return false, errors.WithStack(err)
}
}

return true, nil
Expand Down

0 comments on commit 0ba84dc

Please sign in to comment.