Fixed HTTP2 headers being folded. (#1143) (#1144)

This commit is contained in:
Kostya Esmukov 2016-05-14 15:59:21 +04:00 committed by Maximilian Hils
parent 902cd255d4
commit 7fdc0a94db
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class SafeH2Connection(H2Connection):
with self.lock:
if is_zombie(): # pragma: no cover
return
self.send_headers(stream_id, headers)
self.send_headers(stream_id, headers.fields)
self.conn.send(self.data_to_send())
def safe_send_body(self, is_zombie, stream_id, chunks):