Skip to content

Commit

Permalink
fix: remove extra space (#5826)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Scarpino <andrea@scarpino.dev>
  • Loading branch information
ilpianista authored May 27, 2024
1 parent b84c1ae commit 9e4c234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scaling/executor/scale_jobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (e *scaleExecutor) RequestJobScale(ctx context.Context, scaledJob *kedav1al
runningJobCount := e.getRunningJobCount(ctx, scaledJob)
pendingJobCount := e.getPendingJobCount(ctx, scaledJob)
logger.Info("Scaling Jobs", "Number of running Jobs", runningJobCount)
logger.Info("Scaling Jobs", "Number of pending Jobs ", pendingJobCount)
logger.Info("Scaling Jobs", "Number of pending Jobs", pendingJobCount)

effectiveMaxScale, scaleTo := e.getScalingDecision(scaledJob, runningJobCount, scaleTo, maxScale, pendingJobCount, logger)

Expand Down

0 comments on commit 9e4c234

Please sign in to comment.