Decrease time between fetches to 10 minutes

This commit is contained in:
Peter Stuifzand 2018-04-07 20:06:11 +02:00
parent 42cee3c9a4
commit 5cab70b694

View File

@ -244,7 +244,7 @@ func mapToItem(result map[string]interface{}) microsub.Item {
}
func (b *memoryBackend) run() {
b.ticker = time.NewTicker(1 * time.Hour)
b.ticker = time.NewTicker(10 * time.Minute)
b.quit = make(chan struct{})
go func() {