##// END OF EJS Templates
wireprotov2peer: add TODO about streaming responses...
Gregory Szorc -
r39466:1467b6c2 default
parent child Browse files
Show More
@@ -136,6 +136,9 b' class clienthandler(object):'
136 response = self._responses[frame.requestid]
136 response = self._responses[frame.requestid]
137
137
138 if action == 'responsedata':
138 if action == 'responsedata':
139 # This buffers all data until end of stream is received. This
140 # is bad for performance.
141 # TODO make response data streamable
139 response.b.write(meta['data'])
142 response.b.write(meta['data'])
140
143
141 if meta['eos']:
144 if meta['eos']:
General Comments 0
You need to be logged in to leave comments. Login now