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
I spent some time trying to debug this and searching the internet.
I was trying to pass headers like headers = [("key", "value"), ...] or headers = [(b"key", b"value"), ...]
In the end, the right way to do it is headers = [("key", b"value"), ...]. I finally found it in a test on #471
Where can we document this? I would be happy to open a PR.
The text was updated successfully, but these errors were encountered:
I spent some time trying to debug this and searching the internet.
I was trying to pass headers like
headers = [("key", "value"), ...]
orheaders = [(b"key", b"value"), ...]
In the end, the right way to do it is
headers = [("key", b"value"), ...]
. I finally found it in a test on #471Where can we document this? I would be happy to open a PR.
The text was updated successfully, but these errors were encountered: