diff --git a/USERS.md b/USERS.md index f5d53999bc8f..68311239712b 100644 --- a/USERS.md +++ b/USERS.md @@ -65,6 +65,7 @@ Currently, the following organizations are **officially** using Argo Workflows: 1. [DLR](https://www.dlr.de/eoc/) 1. [Dyno Therapeutics](https://dynotx.com) 1. [EBSCO Information Services](https://www.ebsco.com/) +1. [Enso Finance](https://enso.finance/) 1. [Equinor](https://www.equinor.com/) 1. [Fairwinds](https://fairwinds.com/) 1. [FOLIO](http://corp.folio-sec.com/) diff --git a/workflow/artifacts/gcs/gcs.go b/workflow/artifacts/gcs/gcs.go index 67d1fe878b02..b1f8c283db20 100644 --- a/workflow/artifacts/gcs/gcs.go +++ b/workflow/artifacts/gcs/gcs.go @@ -315,7 +315,7 @@ func (g *ArtifactDriver) ListObjects(artifact *wfv1.Artifact) ([]string, error) var files []string err := waitutil.Backoff(defaultRetry, func() (bool, error) { - log.Infof("GCS List bucekt: %s, key: %s", artifact.GCS.Bucket, artifact.GCS.Key) + log.Infof("GCS List bucket: %s, key: %s", artifact.GCS.Bucket, artifact.GCS.Key) client, err := g.newGCSClient() if err != nil { log.Warnf("Failed to create new GCS client: %v", err)