We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc07ed4 commit 1649a45Copy full SHA for 1649a45
1 file changed
adafruit_httpserver/server.py
@@ -104,6 +104,7 @@ def _receive_header_bytes(
104
except OSError as ex:
105
if ex.errno == ETIMEDOUT:
106
break
107
+ raise
108
except Exception as ex:
109
raise ex
110
return received_bytes
@@ -122,6 +123,7 @@ def _receive_body_bytes(
122
123
124
125
126
127
128
129
return received_body_bytes[:content_length]
0 commit comments