peatle-mibt
peatle-mibt
did you had time to investigate or need more information? Thank you
I'm sorry, but this was a mistake in the description. it is still not working. From my log when starting: 2022-07-25 08:30:14.921 [INFO] starting reminder service with cron expression */1...
strange...my code that I tested is: ```go Scheduler := chrono.NewDefaultTaskScheduler() Scheduler.ScheduleWithCron(func(ctx context.Context) { log.Info("ping cron") }, "*/1 * * * * *", chrono.WithLocation("Europe/Berlin")) Scheduler.ScheduleWithFixedDelay(func(ctx context.Context) { log.Info("ping delay") }, time.Duration(5000*int(time.Millisecond)))...
Hello. I can confirm that it works without using a location, but with location it isn't.
yes I do. I also tried it within ubuntu 22.04 but no luck, sorry.
**thank you!!!** that did the trick, so it is an docker/image problem, not with your code. But maybe it would be possible to show some kind of error or warning...
I see. that's little weird about golang, errors can be ignored without explicitly doing so.