Skip to content

Commit

Permalink
fix: TestGrpcProxyAutoSync should wait a bit longer at CloseProc
Browse files Browse the repository at this point in the history
Signed-off-by: Clement <[email protected]>
  • Loading branch information
clement2026 committed Aug 28, 2024
1 parent bb33591 commit 0a3fb00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/framework/e2e/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ func (epc *EtcdProcessCluster) CloseProc(ctx context.Context, finder func(EtcdPr
}

memberRemoved := false
for i := 0; i < 10; i++ {
for i := 0; i < 15; i++ {
_, err := memberCtl.MemberRemove(ctx, memberID)
if err != nil && strings.Contains(err.Error(), "member not found") {
memberRemoved = true
Expand Down

0 comments on commit 0a3fb00

Please sign in to comment.