Fix error in benchmark/server/main.go

This commit is contained in:
Menghan Li 2016-04-29 14:39:58 -07:00
Родитель 67497aad6c
Коммит e7801b635a
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -28,7 +28,10 @@ func main() {
grpclog.Fatalf("Failed to serve: %v", err)
}
}()
addr, stopper := benchmark.StartServer(":0") // listen on all interfaces
addr, stopper, err := benchmark.StartServer(benchmark.ServerInfo{Addr: ":0", Type: "protobuf"}) // listen on all interfaces
if err != nil {
grpclog.Fatalf("failed to start server: %v", err)
}
grpclog.Println("Server Address: ", addr)
<-time.After(time.Duration(*duration) * time.Second)
stopper()