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.
2 parents c2e832a + 1649a45 commit 0850abaCopy full SHA for 0850aba
adafruit_httpserver/response.py
@@ -299,3 +299,4 @@ def _send_bytes(
299
continue
300
if exc.errno == ECONNRESET:
301
return
302
+ raise
adafruit_httpserver/server.py
@@ -106,6 +106,7 @@ def _receive_header_bytes(
106
except OSError as ex:
107
if ex.errno == ETIMEDOUT:
108
break
109
110
except Exception as ex:
111
raise ex
112
return received_bytes
@@ -124,6 +125,7 @@ def _receive_body_bytes(
124
125
126
127
128
129
130
131
return received_body_bytes[:content_length]
0 commit comments