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
Because of golang/go#4800 our custom User-Agent is dropped when going through a redirect. This mostly affects communications with our image servers and so silently drops otherwise very useful information.
We should find a way to propagate our headers to any follow-up http request that's caused by a redirect.
The text was updated successfully, but these errors were encountered:
We don't use sensitive headers so don't need to be concerned about
crossing domain boundaries. So simply always copy all headers to
subsequent requests in the redirect chain.
Closes#2805
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
Because of golang/go#4800 our custom User-Agent is dropped when going through a redirect. This mostly affects communications with our image servers and so silently drops otherwise very useful information.
We should find a way to propagate our headers to any follow-up http request that's caused by a redirect.
The text was updated successfully, but these errors were encountered: