File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
examples/kv_events/pod_reconciler Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ import (
3030
3131 "github.com/llm-d/llm-d-kv-cache/pkg/kvcache/kvblock"
3232 "github.com/llm-d/llm-d-kv-cache/pkg/kvevents"
33- "github.com/llm-d/llm-d-kv-cache/pkg/kvevents/controller"
3433)
3534
3635func main () {
@@ -90,7 +89,7 @@ func run(ctx context.Context) error {
9089 subscriberManager := kvevents .NewSubscriberManager (pool )
9190
9291 // Convert to internal reconciler config
93- reconcilerConfig , err := controller . NewPodReconcilerConfig (
92+ reconcilerConfig , err := NewPodReconcilerConfig (
9493 poolConfig .PodDiscoveryConfig ,
9594 poolConfig .TopicFilter ,
9695 )
@@ -100,7 +99,7 @@ func run(ctx context.Context) error {
10099 }
101100
102101 // Create and register the pod reconciler
103- podReconciler := & controller. PodReconciler {
102+ podReconciler := & PodReconciler {
104103 Client : mgr .GetClient (),
105104 Scheme : mgr .GetScheme (),
106105 Config : reconcilerConfig ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414limitations under the License.
1515*/
1616
17- package controller
17+ package main
1818
1919import (
2020 "context"
You can’t perform that action at this time.
0 commit comments