You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
POST http://localhost:8080/post/fileContent-Type: text/csvContent-Encoding: gzip< ./post-data.csv.gz
The server received one more byte 0x0A at the end of the actual data.
The backend (e.g. GoLang) Server's gzip decoder occurs unexpected EOF error because of the extra byte.
It should not expand the body data if the Content-Encoding is a kind of "compression".
The text was updated successfully, but these errors were encountered:
Some binary content are sensitive with the extra byte.
Steps to Reproduce:
post-data.csv
post-data.csv.gz
The server received one more byte
0x0A
at the end of the actual data.The backend (e.g. GoLang) Server's gzip decoder occurs
unexpected EOF
error because of the extra byte.It should not expand the body data if the Content-Encoding is a kind of "compression".
The text was updated successfully, but these errors were encountered: