Skip to content

Commit 1435a00

Browse files
authored
Merge pull request #123 from arangodb/bugfix/upgrade-resilientsingle
Fixed down/upgrading resilient single deployments.
2 parents 1b555dc + d6017b0 commit 1435a00

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/deployment/reconcile/action_wait_for_member_up.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ func (a *actionWaitForMemberUp) CheckProgress(ctx context.Context) (bool, error)
6969
switch a.actionCtx.GetMode() {
7070
case api.DeploymentModeSingle:
7171
return a.checkProgressSingle(ctx)
72+
case api.DeploymentModeResilientSingle:
73+
if a.action.Group == api.ServerGroupAgents {
74+
return a.checkProgressAgent(ctx)
75+
}
76+
return a.checkProgressSingle(ctx)
7277
default:
7378
if a.action.Group == api.ServerGroupAgents {
7479
return a.checkProgressAgent(ctx)

0 commit comments

Comments
 (0)