Compare commits

...

2 Commits

View File

@ -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()