Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ddowker committed Sep 17, 2024
1 parent 6a6de9d commit 66a5465
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions broker/client/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package client
import (
"bufio"
"context"
"encoding/json"
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"io"
Expand Down Expand Up @@ -501,10 +501,10 @@ func (s *gcsBackend) open(ctx context.Context, ep *url.URL, fragment pb.Fragment
return gClient.Bucket(cfg.bucket).Object(cfg.rewritePath(cfg.prefix, fragment.ContentPath())).NewReader(ctx)
}

/ to help identify when JSON credentials are an external account used by workload identity
type credentialsFile struct {
Type string `json:"type"`
}
// to help identify when JSON credentials are an external account used by workload identity
type credentialsFile struct {
Type string `json:"type"`
}

func (s *gcsBackend) gcsClient(ep *url.URL) (cfg GSStoreConfig, client *storage.Client, err error) {
var conf *jwt.Config
Expand Down

0 comments on commit 66a5465

Please sign in to comment.