VAULT-6575 Vault agent respects retry config even with caching set (#16970)

* VAULT-6575 Vault agent respects retry config even with caching set

* VAULT-6575 Add changelog

* VAULT-6575 Change log levels
This commit is contained in:
Violet Hynes
2022-09-06 10:35:54 -04:00
committed by GitHub
parent fb9b01b2a4
commit e0be62caf1
5 changed files with 8 additions and 23 deletions

View File

@@ -112,7 +112,7 @@ func (ap *APIProxy) Send(ctx context.Context, req *SendRequest) (*SendResponse,
}
// Make the request to Vault and get the response
ap.logger.Info("forwarding request", "method", req.Request.Method, "path", req.Request.URL.Path)
ap.logger.Info("forwarding request to Vault", "method", req.Request.Method, "path", req.Request.URL.Path)
resp, err := client.RawRequestWithContext(ctx, fwReq)
if resp == nil && err != nil {