Skip to content

Commit

Permalink
Merge pull request #474 from JiriHorky/fix_uwsgi_preforking_compatibi…
Browse files Browse the repository at this point in the history
…lity
  • Loading branch information
Semir Patel committed Mar 2, 2021
2 parents 2eeb069 + 4dd880d commit 3ca872d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bravado/fido_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import requests.structures
import six
import twisted.internet.error
import twisted.web.client
import typing
from bravado_core.operation import Operation
from bravado_core.response import IncomingResponse
from twisted.web._newclient import RequestNotSent
from yelp_bytes import to_bytes

from bravado._equality_util import are_objects_equal as _are_objects_equal
Expand Down Expand Up @@ -104,7 +104,7 @@ class FidoFutureAdapter(FutureAdapter[T]):
fido.exceptions.TCPConnectionError,
twisted.internet.error.ConnectingCancelledError,
twisted.internet.error.DNSLookupError,
twisted.web.client.RequestNotSent,
RequestNotSent,
)

def __init__(self, eventual_result):
Expand Down

0 comments on commit 3ca872d

Please sign in to comment.