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
There was a recent fix in 4.4.0 that fixed the header list for this issues, but its still a problem for the curl command. I have a proposed fix of something like
def format_header(header)
orig_header = header
formatted_header = header.gsub(/^HTTP_/, '').titleize.split.join("-")
formatted_header.concat('-Id') if orig_header.scan(/[-_]Id\Z/i).any?
formatted_header
end
The text was updated successfully, but these errors were encountered:
There was a recent fix in 4.4.0 that fixed the header list for this issues, but its still a problem for the curl command. I have a proposed fix of something like
The text was updated successfully, but these errors were encountered: