From 3a3cefd4a7ec2dd320f1d2b925cb1655fef355a7 Mon Sep 17 00:00:00 2001 From: Olivier Tardieu Date: Mon, 6 May 2024 20:33:24 -0400 Subject: [PATCH] Eliminate debug print --- internal/controller/quota_tracker.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/controller/quota_tracker.go b/internal/controller/quota_tracker.go index 9807e21..16ec840 100644 --- a/internal/controller/quota_tracker.go +++ b/internal/controller/quota_tracker.go @@ -17,7 +17,6 @@ limitations under the License. package controller import ( - "fmt" "strings" mcadv1beta1 "github.com/project-codeflare/mcad/api/v1beta1" @@ -89,7 +88,6 @@ func (tracker *QuotaTracker) Satisfies(appWrapperAskWeights *WeightsPair, resour if unAdmittedWeights, exists = tracker.unAdmittedWeightsMap[namespace]; exists { quotaWeights.QuotaSub(unAdmittedWeights) } - fmt.Println(quotaWeights) quotaFits, insufficientResources := appWrapperAskWeights.Fits(quotaWeights) // mcadLog.Info("QuotaTracker.Satisfies():", "namespace", namespace,