Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 50vh (0.25 sec)

  1. pkg/kube/client.go

    		}
    		delay *= 2
    		if delay > max {
    			delay = max
    		}
    		log.WithLabels("name", name, "attempt", attempt, "time", time.Since(t0)).Debugf("waiting for sync...")
    		if attempt%50 == 0 {
    			// Log every 50th attempt (5s) at info, to avoid too much noisy
    			log.WithLabels("name", name, "attempt", attempt, "time", time.Since(t0)).Infof("waiting for sync...")
    		}
    		if !sleep.Until(stop, delay) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top