properly treat response bodies
This commit is contained in:
parent
acd1263604
commit
37f96365c2
5
fetch.go
5
fetch.go
@ -2,6 +2,8 @@ package hmm
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -23,6 +25,9 @@ func Lines(url string) <-chan string {
|
|||||||
r <- s.Text()
|
r <- s.Text()
|
||||||
}
|
}
|
||||||
// ignore errors
|
// ignore errors
|
||||||
|
// if resp.StatusCode != http.StatusOK {}
|
||||||
|
io.Copy(ioutil.Discard, resp.Body)
|
||||||
|
resp.Body.Close()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
return r
|
return r
|
||||||
|
Loading…
Reference in New Issue
Block a user