Skip to content

Commit a343472

Browse files
committed
Fix scheduled bookings causing resources to be stoppped.
1 parent 495c420 commit a343472

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

controllers/booking_controller.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ func (r *BookingReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
7979
updateResource(r, ctx, &resources, &booking)
8080
} else {
8181
booking.Status.Status = managerv1.BookingScheduled
82-
updateResource(r, ctx, &resources, &booking)
8382
}
8483

8584
if booking.Status.Status == managerv1.BookingInProgress && time.Until(bookEnd) < time.Minute*20 &&
@@ -119,11 +118,10 @@ func updateResource(r *BookingReconciler, ctx context.Context, resources *manage
119118
log := log.FromContext(ctx)
120119

121120
for _, rs := range resources.Items {
122-
123121
if booking.Status.Status == managerv1.BookingInProgress {
124122
rs.Spec.BookedBy = booking.Spec.UserID
125123
rs.Spec.BookedUntil = booking.Spec.EndAt
126-
} else {
124+
} else if booking.Status.Status == managerv1.BookingFinished {
127125
rs.Spec.BookedUntil = ""
128126
}
129127

0 commit comments

Comments
 (0)