From 1629aa31b54d1e1a13b748c88ab0a2cdf2393e15 Mon Sep 17 00:00:00 2001 From: Billy Lynch Date: Wed, 4 Nov 2020 12:53:35 -0500 Subject: [PATCH] Authentikos: Force go mod to use local packages. Not sure why, but remote unit tests are pulling in the master commit when testing changes for `istio.io/test-infra/authentikos`. This is not reproducable locally. This forces a local replacement for any references to Authentikos to hopefully resolve the issue. --- authentikos/go.mod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/authentikos/go.mod b/authentikos/go.mod index 4600c7df94..9495583450 100644 --- a/authentikos/go.mod +++ b/authentikos/go.mod @@ -23,3 +23,7 @@ require ( k8s.io/client-go v0.0.0-20191008115822-1210218b4a26 k8s.io/klog v1.0.0 ) + +replace ( + istio.io/test-infra/authentikos => ./ +)