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
{{ message }}
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
The text was updated successfully, but these errors were encountered:
joeldodge79
changed the title
post/put/patch methods must specify header if options passed to method
post/put/patch methods must specify all headers if present in options passed to method
Oct 22, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
LookerSDK.client. merge_content_type_if_body
fails to deleteoptions[:headers]
(as for instanceLookerSDK.client.parse_query_and_convenience_headers
correctly does) so the caller must supplycontent_type
in order for the call to work.E.g I'd expect the following to pass both
"my-header"
and"content_type"
headers to the server:instead it only passes
"my-header"
and so the caller must do the following to get it to work:The text was updated successfully, but these errors were encountered: