diff --git a/locust/contrib/fasthttp.py b/locust/contrib/fasthttp.py index 6123e5c27a..c21d16b9a1 100644 --- a/locust/contrib/fasthttp.py +++ b/locust/contrib/fasthttp.py @@ -36,7 +36,7 @@ # List of exceptions that can be raised by geventhttpclient when sending an HTTP request, # and that should result in a Locust failure -FAILURE_EXCEPTIONS = (ConnectionError, ConnectionRefusedError, socket.error, \ +FAILURE_EXCEPTIONS = (ConnectionError, ConnectionRefusedError, ConnectionResetError, socket.error, \ SSLError, Timeout, HTTPConnectionClosed)