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
Currently headers on requests are parsed and stored into a dictionary of key, value pairs.
It would be nice to convert that to a list of (key,value) tuples to support setting duplicate headers (example cookie values).
This requires changing the tests & test_tests classes, changing how headers are parsed, stored and passed to pycurl. Which sounds like a lot but is, in fact, super-duper easy.
ifhead: #Convert headers dictionary to list of header entries, tested and workingheaders= [str(headername)+':'+str(headervalue) forheadername, headervalueinhead.items()]
# BECOMESifhead: #Convert headers dictionary to list of header entries, tested and workingheaders= [str(headername)+':'+str(headervalue) for (headername, headervalue) inhead]
Note that for back-compatibility, we need to support still receiving a yaml dictionary of header values for test config.
The text was updated successfully, but these errors were encountered:
Currently headers on requests are parsed and stored into a dictionary of key, value pairs.
It would be nice to convert that to a list of (key,value) tuples to support setting duplicate headers (example cookie values).
This requires changing the tests & test_tests classes, changing how headers are parsed, stored and passed to pycurl. Which sounds like a lot but is, in fact, super-duper easy.
Note that for back-compatibility, we need to support still receiving a yaml dictionary of header values for test config.
The text was updated successfully, but these errors were encountered: