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
HTTP.jl mutates the supplied headers= vector in-place, to avoid allocations. But that optimization probably does not make sense at the scale of our API calls, and it's a surprising default behavior.
We should change this to manually copy the user-provided headers vector, before passing it to HTTP.jl:
HTTP.jl mutates the supplied
headers=
vector in-place, to avoid allocations. But that optimization probably does not make sense at the scale of our API calls, and it's a surprising default behavior.We should change this to manually copy the user-provided headers vector, before passing it to HTTP.jl:
The text was updated successfully, but these errors were encountered: