Compare commits

...

2 Commits

Author SHA1 Message Date
Jef Roosens 2dcee45406
chore: ran v fmt 2022-11-02 20:42:34 +01:00
Jef Roosens 20874bfb0b
fix: add exception when reading 204's
ci/woodpecker/push/lint Pipeline failed Details
2022-11-02 20:41:32 +01:00
1 changed files with 5 additions and 0 deletions

View File

@ -115,6 +115,11 @@ fn (mut d DockerConn) read_response_body(length int) !string {
fn (mut d DockerConn) read_response() !(http.Response, string) {
head := d.read_response_head()!
// 204 means "No Content", so we can assume nothing follows after this
if head.status_code == 204 {
return head, ''
}
if head.header.get(http.CommonHeader.transfer_encoding) or { '' } == 'chunked' {
mut builder := strings.new_builder(1024)
mut body := d.get_chunked_response_reader()