Skip to content

Commit

Permalink
bug: fixes missing auth header #291 (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan authored Sep 19, 2023
1 parent 051dc9f commit eaeca01
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/client/keystores/keystores.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ func importKeystores(wg *sync.WaitGroup, jobs <-chan string, errs chan<- error)
errs <- err
continue
}
req, err = apiclient.SetAuthHeader(req)
if err != nil {
errs <- err
continue
}

resp, err := apiclient.ApigeeAPIClient.Do(req)
if err != nil {
Expand Down

0 comments on commit eaeca01

Please sign in to comment.