Fix failure while saving HRA status after running controller for a while (#348)

Fixes #346
This commit is contained in:
Yusuke Kuoka
2021-02-24 11:20:21 +09:00
committed by GitHub
parent 398791241e
commit e44e53b88e

View File

@@ -165,7 +165,7 @@ func (r *HorizontalRunnerAutoscalerReconciler) Reconcile(req ctrl.Request) (ctrl
cacheDuration = 10 * time.Minute
}
updated.Status.CacheEntries = append(updated.Status.CacheEntries, v1alpha1.CacheEntry{
updated.Status.CacheEntries = append(cacheEntries, v1alpha1.CacheEntry{
Key: v1alpha1.CacheEntryKeyDesiredReplicas,
Value: *replicas,
ExpirationTime: metav1.Time{Time: time.Now().Add(cacheDuration)},