File tree 5 files changed +4
-180
lines changed
5 files changed +4
-180
lines changed Original file line number Diff line number Diff line change @@ -762,11 +762,11 @@ EPP_TAG ?= main
762
762
environment.dev.kubernetes : check-kubectl check-kustomize check-envsubst
763
763
@echo " INFO: checking required vars"
764
764
ifndef NAMESPACE
765
- $(error "Error: NAMESPACE is required but not set)
765
+ $(error "Error: NAMESPACE is required but not set" )
766
766
endif
767
767
export NAMESPACE=$(NAMESPACE)
768
768
ifndef REGISTRY_SECRET
769
- $(error "Error: REGISTRY_SECRET is required but not set)
769
+ $(error "Error: REGISTRY_SECRET is required but not set" )
770
770
endif
771
771
export REGISTRY_SECRET=$(REGISTRY_SECRET)
772
772
export VLLM_SIM_IMAGE=$(VLLM_SIM_IMAGE)
@@ -791,7 +791,7 @@ endif
791
791
.PHONY : clean.environment.dev.kubernetes
792
792
clean.environment.dev.kubernetes : check-kubectl check-kustomize check-envsubst
793
793
ifndef NAMESPACE
794
- $(error "Error: NAMESPACE is required but not set)
794
+ $(error "Error: NAMESPACE is required but not set" )
795
795
endif
796
796
@echo "INFO: deleting namespace $(NAMESPACE)"
797
797
kubectl delete namespace $(NAMESPACE)
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ package scheduling
20
20
import (
21
21
"context"
22
22
"fmt"
23
- "math/rand/v2"
24
23
"time"
25
24
26
25
"sigs.k8s.io/controller-runtime/pkg/log"
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ func (fds *fakeDataStore) PodGetAll() []backendmetrics.PodMetrics {
439
439
return pm
440
440
}
441
441
442
- func (fds * fakeDataStore ) GetPodForSession (sessionID string ) * backendmetrics.Pod {
442
+ func (fds * fakeDataStore ) GetPodForSession (_ string ) * backendmetrics.Pod {
443
443
return nil
444
444
}
445
445
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments