diff --git a/controllers/horizontalrunnerautoscaler_controller.go b/controllers/horizontalrunnerautoscaler_controller.go index 625bd681..f6f09b0c 100644 --- a/controllers/horizontalrunnerautoscaler_controller.go +++ b/controllers/horizontalrunnerautoscaler_controller.go @@ -572,6 +572,10 @@ func (r *HorizontalRunnerAutoscalerReconciler) computeReplicasWithCache(log logr "min", minReplicas, } + if maxReplicas := hra.Spec.MaxReplicas; maxReplicas != nil { + kvs = append(kvs, "max", *maxReplicas) + } + if cached != nil { kvs = append(kvs, "cached", *cached) } @@ -581,10 +585,6 @@ func (r *HorizontalRunnerAutoscalerReconciler) computeReplicasWithCache(log logr kvs = append(kvs, "scale_down_delay_until", scaleDownDelayUntil) } - if maxReplicas := hra.Spec.MaxReplicas; maxReplicas != nil { - kvs = append(kvs, "max", *maxReplicas) - } - log.V(1).Info(fmt.Sprintf("Calculated desired replicas of %d", newDesiredReplicas), kvs..., )