comparison pkg/scheduler/scheduler.go @ 4411:5826d4de0e40

Workarounds for incompatible upstream updates in pgx and cron packages.
author Sascha Wilde <wilde@intevation.de>
date Tue, 17 Sep 2019 16:28:47 +0200
parents c9315a6eb2c2
children 5f47eeea988d
comparison
equal deleted inserted replaced
4410:3759b47f20f3 4411:5826d4de0e40
17 "log" 17 "log"
18 "sort" 18 "sort"
19 "strings" 19 "strings"
20 "sync" 20 "sync"
21 21
22 "github.com/robfig/cron" 22 cron "gopkg.in/robfig/cron.v1"
23 ) 23 )
24 24
25 // Action is called with a configuration id. 25 // Action is called with a configuration id.
26 type Action func(cfgID int64) 26 type Action func(cfgID int64)
27 27