added CET timezone

This commit is contained in:
Mukhtar Akere
2025-06-16 22:54:11 +01:00
parent b7226b21ec
commit 5661b05ec1
2 changed files with 5 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ func (c *Cache) StartSchedule(ctx context.Context) error {
} else {
// Schedule the job
if _, err := c.cetScheduler.NewJob(jd, gocron.NewTask(func() {
c.resetInvalidLinks()
c.resetInvalidLinks(ctx)
}), gocron.WithContext(ctx)); err != nil {
c.logger.Error().Err(err).Msg("Failed to create link reset job")
} else {