Compare commits
2 Commits
43cd0c4308
...
94d448e905
Author | SHA1 | Date | |
---|---|---|---|
94d448e905 | |||
4ab2371198 |
7
main.go
7
main.go
|
@ -17,7 +17,7 @@ var (
|
||||||
clk chan bool
|
clk chan bool
|
||||||
wg sync.WaitGroup
|
wg sync.WaitGroup
|
||||||
|
|
||||||
freq = time.Second * 15
|
freq = time.Second
|
||||||
throttle bool
|
throttle bool
|
||||||
errs map[string]int
|
errs map[string]int
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
|
@ -61,8 +61,9 @@ func get_(symbol string) (error) {
|
||||||
_, err = io.Copy(out, resp.Body)
|
_, err = io.Copy(out, resp.Body)
|
||||||
resp.Body.Close()
|
resp.Body.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("Error copying to file.")
|
fmt.Printf("%s: Error copying to file.", symbol)
|
||||||
os.Exit(-1)
|
err_(symbol,1)
|
||||||
|
return fmt.Errorf("%s", resp.Status)
|
||||||
}
|
}
|
||||||
out.WriteString("\n")
|
out.WriteString("\n")
|
||||||
out.Close()
|
out.Close()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user