Skip to content

Commit 62dcdb6

Browse files
committed
cleaning up messy merge conflict
1 parent 72c2d63 commit 62dcdb6

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

pkg/ext-proc/backend/endpointslice_reconciler.go renamed to pkg/ext-proc/backend/pod_reconciler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import (
55
"strconv"
66
"time"
77

8-
"inference.networking.x-k8s.io/gateway-api-inference-extension/api/v1alpha1"
9-
logutil "inference.networking.x-k8s.io/gateway-api-inference-extension/pkg/ext-proc/util/logging"
108
corev1 "k8s.io/api/core/v1"
119
"k8s.io/apimachinery/pkg/runtime"
1210
"k8s.io/client-go/tools/record"
1311
"k8s.io/klog/v2"
1412
ctrl "sigs.k8s.io/controller-runtime"
1513
"sigs.k8s.io/controller-runtime/pkg/client"
14+
"sigs.k8s.io/gateway-api-inference-extension/api/v1alpha1"
15+
logutil "sigs.k8s.io/gateway-api-inference-extension/pkg/ext-proc/util/logging"
1616
)
1717

1818
type PodReconciler struct {

pkg/ext-proc/backend/endpointslice_reconciler_test.go renamed to pkg/ext-proc/backend/pod_reconciler_test.go

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,11 @@ package backend
33
import (
44
"testing"
55

6-
<<<<<<< HEAD
7-
<<<<<<< HEAD:pkg/ext-proc/backend/endpointslice_reconcilier_test.go
8-
=======
9-
=======
106
"github.com/google/go-cmp/cmp"
117
"github.com/google/go-cmp/cmp/cmpopts"
12-
>>>>>>> 56c7114 (updating test)
13-
"inference.networking.x-k8s.io/gateway-api-inference-extension/api/v1alpha1"
148
corev1 "k8s.io/api/core/v1"
15-
<<<<<<< HEAD
16-
>>>>>>> d5d500b (reversion to pod reconciliation):pkg/ext-proc/backend/pod_reconciler_test.go
17-
v1 "k8s.io/api/core/v1"
18-
discoveryv1 "k8s.io/api/discovery/v1"
19-
"sigs.k8s.io/gateway-api-inference-extension/api/v1alpha1"
20-
=======
219
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
22-
>>>>>>> 8042d21 (adding ready check and unit tests)
10+
"sigs.k8s.io/gateway-api-inference-extension/api/v1alpha1"
2311
)
2412

2513
var (
@@ -28,7 +16,7 @@ var (
2816
basePod3 = Pod{Name: "pod3", Address: ":8000"}
2917
)
3018

31-
func TestUpdateDatastore_EndpointSliceReconciler(t *testing.T) {
19+
func TestUpdateDatastore_PodReconciler(t *testing.T) {
3220
tests := []struct {
3321
name string
3422
datastore *K8sDatastore

0 commit comments

Comments
 (0)