Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Eliminate debug print #166

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions internal/controller/quota_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ limitations under the License.
package controller

import (
"fmt"
"strings"

mcadv1beta1 "github.com/project-codeflare/mcad/api/v1beta1"
Expand Down Expand Up @@ -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,
Expand Down