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

Commit a80bcfc

Browse files
committed
fixed rebase
1 parent d991e13 commit a80bcfc

File tree

5 files changed

+4
-180
lines changed

5 files changed

+4
-180
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -762,11 +762,11 @@ EPP_TAG ?= main
762762
environment.dev.kubernetes: check-kubectl check-kustomize check-envsubst
763763
@echo "INFO: checking required vars"
764764
ifndef NAMESPACE
765-
$(error "Error: NAMESPACE is required but not set)
765+
$(error "Error: NAMESPACE is required but not set")
766766
endif
767767
export NAMESPACE=$(NAMESPACE)
768768
ifndef REGISTRY_SECRET
769-
$(error "Error: REGISTRY_SECRET is required but not set)
769+
$(error "Error: REGISTRY_SECRET is required but not set")
770770
endif
771771
export REGISTRY_SECRET=$(REGISTRY_SECRET)
772772
export VLLM_SIM_IMAGE=$(VLLM_SIM_IMAGE)
@@ -791,7 +791,7 @@ endif
791791
.PHONY: clean.environment.dev.kubernetes
792792
clean.environment.dev.kubernetes: check-kubectl check-kustomize check-envsubst
793793
ifndef NAMESPACE
794-
$(error "Error: NAMESPACE is required but not set)
794+
$(error "Error: NAMESPACE is required but not set")
795795
endif
796796
@echo "INFO: deleting namespace $(NAMESPACE)"
797797
kubectl delete namespace $(NAMESPACE)

pkg/epp/scheduling/scheduler.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ package scheduling
2020
import (
2121
"context"
2222
"fmt"
23-
"math/rand/v2"
2423
"time"
2524

2625
"sigs.k8s.io/controller-runtime/pkg/log"

pkg/epp/scheduling/scheduler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ func (fds *fakeDataStore) PodGetAll() []backendmetrics.PodMetrics {
439439
return pm
440440
}
441441

442-
func (fds *fakeDataStore) GetPodForSession(sessionID string) *backendmetrics.Pod {
442+
func (fds *fakeDataStore) GetPodForSession(_ string) *backendmetrics.Pod {
443443
return nil
444444
}
445445

pkg/epp/scheduling/scorer.go

Lines changed: 0 additions & 112 deletions
This file was deleted.

pkg/epp/scheduling/session_affinity_scorer.go

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)