fix
This commit is contained in:
parent
f3702f9df0
commit
316d616419
|
@ -109,16 +109,16 @@ func (cron *Crontab) TimeUp() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
// NextTime 返回下次任务的时间
|
// NextTime 返回下次任务的时间
|
||||||
func (cron *Crontab) NextTime() *time.Time {
|
func (cron *Crontab) NextTime() time.Time {
|
||||||
if cron.interval != nil {
|
if cron.interval != nil {
|
||||||
return &cron.nextTime
|
return cron.nextTime
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(cron.WillPlans) > 0 {
|
if len(cron.WillPlans) > 0 {
|
||||||
return &cron.WillPlans[0]
|
return cron.WillPlans[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return time.Now().Add(time.Second * 2)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cron *Crontab) String() string {
|
func (cron *Crontab) String() string {
|
||||||
|
|
|
@ -26,8 +26,8 @@ func TestParseCrontab(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
cron.createYearPlan()
|
cron.createYearPlan()
|
||||||
if !cron.TimeUp() {
|
if cron.TimeUp() {
|
||||||
t.Error("timeup error")
|
t.Error("timeup error", cron.WillPlans[0:2])
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintMemUsage()
|
PrintMemUsage()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user