Skip to content

Commit

Permalink
chore: increase timeout for build bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
rangoo94 committed Oct 28, 2024
1 parent a879137 commit 90bf0a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tcl/kubectl-testkube/devbox/devutils/objectstorage.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (r *ObjectStorage) Create(ctx context.Context) error {

// Handle a case when port forwarder is not ready
for i := 0; i < 10; i++ {
makeBucketCtx, ctxCancel := context.WithTimeout(ctx, 2*time.Second)
makeBucketCtx, ctxCancel := context.WithTimeout(ctx, 5*time.Second)
err = c.MakeBucket(makeBucketCtx, "devbox", minio2.MakeBucketOptions{})
if err == nil {
ctxCancel()
Expand Down

0 comments on commit 90bf0a7

Please sign in to comment.