We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b5d86b commit 8850ee7Copy full SHA for 8850ee7
cmd/podsync/main.go
@@ -201,7 +201,7 @@ func main() {
201
for _, _feed := range cfg.Feeds {
202
// Track if this feed has an explicit cron schedule
203
hasExplicitCronSchedule := _feed.CronSchedule != ""
204
-
+
205
if _feed.CronSchedule == "" {
206
_feed.CronSchedule = fmt.Sprintf("@every %s", _feed.UpdatePeriod.String())
207
}
@@ -215,7 +215,7 @@ func main() {
215
216
m[cronFeed.ID] = cronID
217
log.Debugf("-> %s (update '%s')", cronFeed.ID, cronFeed.CronSchedule)
218
219
// Only perform initial update if no explicit cron schedule is configured
220
// This prevents unwanted updates when using fixed schedules in Docker deployments
221
if !hasExplicitCronSchedule {
0 commit comments