dropbox: add logs to show when poll interval limits are exceeded

This commit is contained in:
Nick Craig-Wood 2022-05-31 12:08:01 +01:00
parent cc9bc2cb80
commit 3d55f69338
1 changed files with 2 additions and 0 deletions

View File

@ -1370,10 +1370,12 @@ func (f *Fs) changeNotifyRunner(ctx context.Context, notifyFunc func(string, fs.
if timeout < 30 { if timeout < 30 {
timeout = 30 timeout = 30
fs.Debugf(f, "Increasing poll interval to minimum 30s")
} }
if timeout > 480 { if timeout > 480 {
timeout = 480 timeout = 480
fs.Debugf(f, "Decreasing poll interval to maximum 480s")
} }
err = f.pacer.Call(func() (bool, error) { err = f.pacer.Call(func() (bool, error) {