We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ee8e2 commit a23a62fCopy full SHA for a23a62f
1 file changed
src/spin_sdk/http/__init__.py
@@ -190,6 +190,7 @@ async def send(request: Request) -> Response:
190
incoming_response = await client.send(outgoing_request)
191
192
status = incoming_response.get_status_code()
193
+ headers = incoming_response.get_headers().copy_all()
194
rx, trailers = WasiResponse.consume_body(incoming_response, _unit_future())
195
body = bytearray()
196
with rx:
0 commit comments