Skip to content

Commit

Permalink
fix: hanging wait container on save artifact to GCS bucket artifactRe…
Browse files Browse the repository at this point in the history
…pository (#7536)

Signed-off-by: kostas-theo <[email protected]>
  • Loading branch information
kostas-theo committed Jan 19, 2022
1 parent a94b846 commit f1fe3be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion USERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ Currently, the following organizations are **officially** using Argo Workflows:
1. [Norwegian Refugee Council](https://www.nrc.no/)
1. [nrd.io](https://nrd.io/)
1. [NVIDIA](https://www.nvidia.com/)
1. [One Concern](https://oneconcern.com/)
1. [Onepanel](https://docs.onepanel.ai)
1. [Oracle](https://www.oracle.com/)
1. [OVH](https://www.ovh.com/)
Expand Down Expand Up @@ -143,7 +144,7 @@ Currently, the following organizations are **officially** using Argo Workflows:
1. [Styra](https://www.styra.com/)
1. [Sutpc](http:https://www.sutpc.com/)
1. [Threekit](https://www.threekit.com/)
1. [Tiger Analytics](https://www.tigeranalytics.com/)
1. [Tiger Analytics](https://www.tigeranalytics.com/)
1. [Tradeshift](https://tradeshift.com/)
1. [Tulip](https://tulip.com/)
1. [Ubie](https://ubie.life/)
Expand Down
2 changes: 1 addition & 1 deletion workflow/artifacts/gcs/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type ArtifactDriver struct {

var (
_ common.ArtifactDriver = &ArtifactDriver{}
defaultRetry = wait.Backoff{Duration: time.Second * 2, Factor: 2.0, Steps: 5, Jitter: 0.1}
defaultRetry = wait.Backoff{Duration: time.Second * 2, Factor: 2.0, Steps: 5, Jitter: 0.1, Cap: time.Minute * 10}
)

// from https://github.com/googleapis/google-cloud-go/blob/master/storage/go110.go
Expand Down

0 comments on commit f1fe3be

Please sign in to comment.