Skip to content

Commit 1b575d8

Browse files
committed
Fix incorrect references to old repo.
Some of the source was incorrectly pointing at the old repo. If you have the old repo it would incorrectly pull it in. This lead to using old code. If you did not have the old repo it wouldn't build.
1 parent 453d261 commit 1b575d8

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

cmd/agent/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"crypto/tls"
2121
"crypto/x509"
2222
"fmt"
23-
"github.com/anfernee/proxy-service/pkg/agent/agentclient"
23+
"sigs.k8s.io/apiserver-network-proxy/pkg/agent/agentclient"
2424
"github.com/golang/glog"
2525
"github.com/prometheus/client_golang/prometheus"
2626
"github.com/spf13/cobra"

cmd/client/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"io/ioutil"
2828
"os"
2929

30-
"github.com/anfernee/proxy-service/pkg/agent/client"
30+
"sigs.k8s.io/apiserver-network-proxy/pkg/agent/client"
3131
"github.com/golang/glog"
3232
"github.com/spf13/cobra"
3333
)

cmd/proxy/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828

2929
"crypto/tls"
3030
"crypto/x509"
31-
"github.com/anfernee/proxy-service/pkg/agent/agentserver"
32-
"github.com/anfernee/proxy-service/proto/agent"
31+
"sigs.k8s.io/apiserver-network-proxy/pkg/agent/agentserver"
32+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
3333
"github.com/golang/glog"
3434
"github.com/spf13/cobra"
3535
"github.com/spf13/pflag"

examples/legacy/client/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
"google.golang.org/grpc"
2626

27-
proxy "github.com/anfernee/proxy-service/proto"
27+
proxy "sigs.k8s.io/apiserver-network-proxy/proto"
2828
)
2929

3030
func main() {

examples/legacy/server/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
"google.golang.org/grpc"
2525

26-
"github.com/anfernee/proxy-service/pkg/server"
27-
proxy "github.com/anfernee/proxy-service/proto"
26+
"sigs.k8s.io/apiserver-network-proxy/proxy-service/pkg/server"
27+
proxy "sigs.k8s.io/apiserver-network-proxy/proxy-service/proto"
2828
)
2929

3030
func main() {

pkg/agent/agentclient/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"sync"
2424
"sync/atomic"
2525

26-
"github.com/anfernee/proxy-service/proto/agent"
26+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
2727
"github.com/golang/glog"
2828
"google.golang.org/grpc"
2929
)

pkg/agent/agentserver/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"io"
2121

2222
"fmt"
23-
"github.com/anfernee/proxy-service/proto/agent"
23+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
2424
"github.com/golang/glog"
2525
"net"
2626
)

pkg/agent/agentserver/tunnel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package agentserver
1818

1919
import (
20-
"github.com/anfernee/proxy-service/proto/agent"
20+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
2121
"github.com/golang/glog"
2222
"io"
2323
"math/rand"

pkg/agent/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"net"
2525
"time"
2626

27-
"github.com/anfernee/proxy-service/proto/agent"
27+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
2828
"github.com/golang/glog"
2929

3030
"google.golang.org/grpc"

pkg/agent/client/conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"net"
2323
"time"
2424

25-
"github.com/anfernee/proxy-service/proto/agent"
25+
"sigs.k8s.io/apiserver-network-proxy/proto/agent"
2626
"github.com/golang/glog"
2727
)
2828

0 commit comments

Comments
 (0)