We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 324a9c6 commit 6134914Copy full SHA for 6134914
pusher/tornado.py
@@ -33,10 +33,7 @@ def send_request(self, request):
33
future = Future()
34
35
def process_response_future(response):
36
- if response.exc_info() is not None:
37
- future.set_exc_info(response.exc_info())
38
-
39
- elif response.exception() is not None:
+ if response.exception() is not None:
40
future.set_exception(response.exception())
41
42
else:
0 commit comments