Skip to content

Commit 09bc4eb

Browse files
committed
fix: replace local path with fork URL for CI compatibility
Replace local filesystem path in go.mod replace directive with the fork's published commit. Both replace directives (gateway-api-inference- extension pin + IPP fork) are needed until upstream PRs merge: - IPP PR opendatahub-io#169 (ResponseBodyMode types) - ODH PR opendatahub-io#331 (framework migration removes gateway-api-inference-extension)
1 parent 6c9b2c7 commit 09bc4eb

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
require (
66
github.com/aws/aws-sdk-go-v2 v1.41.7
77
github.com/google/go-cmp v0.7.0
8-
github.com/llm-d/llm-d-inference-payload-processor v0.0.0-00010101000000-000000000000
8+
github.com/llm-d/llm-d-inference-payload-processor v0.0.0-20260609111331-11891e132621
99
github.com/onsi/ginkgo/v2 v2.30.0
1010
github.com/onsi/gomega v1.41.0
1111
github.com/stretchr/testify v1.11.1
@@ -125,6 +125,6 @@ require (
125125
sigs.k8s.io/yaml v1.6.0 // indirect
126126
)
127127

128-
replace github.com/llm-d/llm-d-inference-payload-processor => ../llm-d-inference-payload-processor
129-
130128
replace sigs.k8s.io/gateway-api-inference-extension => sigs.k8s.io/gateway-api-inference-extension v0.0.0-20260429190324-8ed5a0cd5d11
129+
130+
replace github.com/llm-d/llm-d-inference-payload-processor => github.com/noyitz/llm-d-inference-payload-processor v0.0.0-20260615214321-ca1985b7eba9

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq
147147
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
148148
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=
149149
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw=
150+
github.com/noyitz/llm-d-inference-payload-processor v0.0.0-20260615214321-ca1985b7eba9 h1:FjmnQ3uy4jBqDEDuM4liIQcBLXsOXSwUUWHH2P6rxIc=
151+
github.com/noyitz/llm-d-inference-payload-processor v0.0.0-20260615214321-ca1985b7eba9/go.mod h1:UZldktV/E/LtaFHrtZdPOhy1d7WdazMRe3Q9OW7f9jI=
150152
github.com/onsi/ginkgo/v2 v2.30.0 h1:zxM/9XneXFIy64j6/wAmBIX4zRC7Hu6U8XFNZvDnCQc=
151153
github.com/onsi/ginkgo/v2 v2.30.0/go.mod h1:+aXOY+vzZ5mu2iI2HpTZUPmM//oQfsNFX6gU9kNcA44=
152154
github.com/onsi/gomega v1.41.0 h1:OwKp4pXNgVxf6sCplzYo794OFNuoL2q2SBMU5NSWOjA=

0 commit comments

Comments
 (0)