arista-proxy: builds

master
Serge Bazanski 2018-10-25 12:14:18 +01:00
parent c981e57957
commit dd3d40f5e7
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ import (
"os/signal" "os/signal"
"time" "time"
"code.hackerspace.pl/q3k/hspki" "code.hackerspace.pl/hscloud/go/pki"
"github.com/golang/glog" "github.com/golang/glog"
"github.com/q3k/statusz" "github.com/q3k/statusz"
"golang.org/x/net/trace" "golang.org/x/net/trace"
@ -79,7 +79,7 @@ func (m *Mirko) Listen() error {
return fmt.Errorf("net.Listen: %v", err) return fmt.Errorf("net.Listen: %v", err)
} }
m.grpcListen = grpcLis m.grpcListen = grpcLis
m.grpcServer = grpc.NewServer(hspki.WithServerHSPKI()...) m.grpcServer = grpc.NewServer(pki.WithServerHSPKI()...)
reflection.Register(m.grpcServer) reflection.Register(m.grpcServer)
httpLis, err := net.Listen("tcp", flagDebugAddress) httpLis, err := net.Listen("tcp", flagDebugAddress)

View File

@ -4,7 +4,7 @@ import (
"flag" "flag"
"fmt" "fmt"
"code.hackerspace.pl/q3k/mirko" "code.hackerspace.pl/hscloud/go/mirko"
"github.com/golang/glog" "github.com/golang/glog"
"github.com/ybbus/jsonrpc" "github.com/ybbus/jsonrpc"