aboutsummaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go16
1 files changed, 2 insertions, 14 deletions
diff --git a/main.go b/main.go
index 9e5b180..b55cd2b 100644
--- a/main.go
+++ b/main.go
@@ -74,20 +74,8 @@ func main() {
}
func backgroundCrawl(minutes int) {
- if minutes < 1 {
- return
- }
- ticker := time.NewTicker(time.Minute * time.Duration(minutes))
- defer ticker.Stop()
- done := make(chan bool)
for {
- select {
- case <-done:
- fmt.Println("done")
- return
- case t := <-ticker.C:
- vlog.Printf("starting crawl at %s\n", t)
- crawler.Crawl()
- }
+ time.Sleep(time.Minute * time.Duration(minutes))
+ crawler.Crawl()
}
}