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

View File

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