Skip to content

Commit 7e93f37

Browse files
authored
Merge pull request #122 from agronholm/aio-process
Process the response in the AsyncIO backend
2 parents e2783d9 + de10373 commit 7e93f37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pusher/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def send_request(self, request):
3535
timeout=self.client.timeout
3636
)
3737
body = yield from response.text('utf-8')
38-
return body
38+
return process_response(response.status, body)
3939
finally:
4040
if response is not None:
4141
response.close()

0 commit comments

Comments
 (0)