|
28 | 28 | import tornado.gen
|
29 | 29 | from tornado import gen
|
30 | 30 |
|
31 |
| -from tchannel import Request, Response |
| 31 | +from tchannel import transport |
| 32 | +from tchannel.request import Request, TransportHeaders |
| 33 | +from tchannel.response import response_from_mixed |
32 | 34 | from ..errors import InvalidEndpointError
|
33 | 35 | from ..errors import TChannelError
|
34 | 36 | from ..event import EventType
|
@@ -164,27 +166,28 @@ def handle_call(self, request, connection):
|
164 | 166 | connection.post_response(response)
|
165 | 167 |
|
166 | 168 | try:
|
167 |
| - |
168 | 169 | # New impl - the handler takes a request and returns a response
|
169 | 170 | if self._handler_returns_response:
|
170 | 171 |
|
171 | 172 | # convert deprecated req to new top-level req
|
172 | 173 | b = yield request.get_body()
|
173 | 174 | he = yield request.get_header()
|
174 |
| - new_req = Request(b, he) |
| 175 | + t = request.headers |
| 176 | + t = transport.to_kwargs(t) |
| 177 | + t = TransportHeaders(**t) |
| 178 | + new_req = Request( |
| 179 | + body=b, |
| 180 | + headers=he, |
| 181 | + transport=t, |
| 182 | + ) |
175 | 183 |
|
176 | 184 | # get new top-level resp from controller
|
177 | 185 | new_resp = yield gen.maybe_future(
|
178 | 186 | handler.endpoint(new_req)
|
179 | 187 | )
|
180 | 188 |
|
181 |
| - # if no return then use empty response |
182 |
| - if new_resp is None: |
183 |
| - new_resp = Response() |
184 |
| - |
185 |
| - # if not a response, then it's just the body, create resp |
186 |
| - if not isinstance(new_resp, Response): |
187 |
| - new_resp = Response(new_resp) |
| 189 | + # instantiate a tchannel.Response |
| 190 | + new_resp = response_from_mixed(new_resp) |
188 | 191 |
|
189 | 192 | # assign resp values to dep response
|
190 | 193 | response.write_header(new_resp.headers)
|
|
0 commit comments