You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the default class Default in Client uses sun.net.www.protocol.http.HttpURLConnection, which has the set of restricted headers, even if I add a header using RequestTemplate#header(String, String), the actual HTTP request does not contain the header.
However feign.Logger logs not the actual request but the Request made by SynchronousMethodHandler#executeAndDecode(), which contains the restricted header I have added.
This inconsistency made me hard to discover the problem because there's no such documentation tells the logged request may not be the same as the actual HTTP request.
I hope to add some documentation that tells RequestTemplate you applied may not be the actual request or, if possible, make Logger logs the actual HTTP request.
The text was updated successfully, but these errors were encountered:
Since the default class
Default
inClient
usessun.net.www.protocol.http.HttpURLConnection
, which has the set of restricted headers, even if I add a header usingRequestTemplate#header(String, String)
, the actual HTTP request does not contain the header.However
feign.Logger
logs not the actual request but theRequest
made bySynchronousMethodHandler#executeAndDecode()
, which contains the restricted header I have added.This inconsistency made me hard to discover the problem because there's no such documentation tells the logged request may not be the same as the actual HTTP request.
I hope to add some documentation that tells
RequestTemplate
you applied may not be the actual request or, if possible, makeLogger
logs the actual HTTP request.The text was updated successfully, but these errors were encountered: