Skip to content

Commit

Permalink
fix: missed transport
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Jul 6, 2024
1 parent a1c366e commit 678dce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/v1/client/direct_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func ConfigureClient(client *http.Client, token *oauth2.Token, cloudApiKey strin
hs["Authorization"] = "Bearer " + cloudApiKey
}

client.Transport = &transport{headers: hs}
client.Transport = &transport{headers: hs, base: client.Transport}
}

// NewDirectClient returns new direct client
Expand Down

0 comments on commit 678dce5

Please sign in to comment.