Skip to content

Commit

Permalink
fix log message when setting maxConcurrentReconciles
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonAleksandrov13 committed Dec 2, 2024
1 parent 8b70c02 commit 4643dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func main() {
var maxConcurrentReconciles int
if maxConcurrentReconcilesEnvValue := getIntEnv("MAX_CONCURRENT_RECONCILES"); maxConcurrentReconcilesEnvValue > 0 {
maxConcurrentReconciles = maxConcurrentReconcilesEnvValue
log.Info("maxConcurrentReconciles set to", maxConcurrentReconciles)
log.Info(fmt.Sprintf("maxConcurrentReconciles set to %d", maxConcurrentReconciles))
}

if enableDebugPprof, ok := os.LookupEnv("ENABLE_DEBUG_PPROF"); ok {
Expand Down

0 comments on commit 4643dc7

Please sign in to comment.