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 8b70c02 commit 4643dc7Copy full SHA for 4643dc7
main.go
@@ -163,7 +163,7 @@ func main() {
163
var maxConcurrentReconciles int
164
if maxConcurrentReconcilesEnvValue := getIntEnv("MAX_CONCURRENT_RECONCILES"); maxConcurrentReconcilesEnvValue > 0 {
165
maxConcurrentReconciles = maxConcurrentReconcilesEnvValue
166
- log.Info("maxConcurrentReconciles set to", maxConcurrentReconciles)
+ log.Info(fmt.Sprintf("maxConcurrentReconciles set to %d", maxConcurrentReconciles))
167
}
168
169
if enableDebugPprof, ok := os.LookupEnv("ENABLE_DEBUG_PPROF"); ok {
0 commit comments