mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-20 07:00:32 -04:00
cli: increase kubecmd retry limit (#2500)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
a1b4db4175
commit
d218f296ad
2 changed files with 4 additions and 4 deletions
|
@ -484,7 +484,7 @@ func TestApplyJoinConfig(t *testing.T) {
|
|||
// be updated here
|
||||
repeatedErrors := func(err error) []error {
|
||||
var errs []error
|
||||
for i := 0; i < 20; i++ {
|
||||
for i := 0; i < 30; i++ {
|
||||
errs = append(errs, err)
|
||||
}
|
||||
return errs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue