Merge pull request #49 from fesiqueira/master

Fixes S3 fetcher return
orig v1.1.4
Jaime Pillora 2020-04-07 13:12:24 +10:00 committed by GitHub
commit 54c4e412bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,5 +122,5 @@ func (s *S3) Fetch() (io.Reader, error) {
return gzip.NewReader(resp.Body)
}
//success!
return nil, nil
return resp.Body, nil
}