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 9c40bf9 commit e7ad036Copy full SHA for e7ad036
pkg/config/polling_manager.go
@@ -184,6 +184,9 @@ func (cm *PollingProjectConfigManager) Start(ctx context.Context) {
184
cm.logger.Info("Polling Config Manager Disabled")
185
return
186
}
187
+ if cm.pollingInterval < 30*time.Second {
188
+ cm.logger.Warning("Polling intervals below 30 seconds are not recommended.")
189
+ }
190
cm.logger.Debug("Polling Config Manager Initiated")
191
t := time.NewTicker(cm.pollingInterval)
192
for {
0 commit comments