Update to match standard Go style.

Remove completely unused dial options, and
reorder a bit of code to match what real code would look like.
pull/3109/head
David Symonds 10 years ago
parent e575536083
commit 8169a68762
  1. 5
      go/greeter_client/main.go

@ -49,19 +49,18 @@ const (
func main() { func main() {
// Set up a connection to the server. // Set up a connection to the server.
var opts []grpc.DialOption conn, err := grpc.Dial(address)
conn, err := grpc.Dial(address, opts...)
if err != nil { if err != nil {
log.Fatalf("did not connect: %v", err) log.Fatalf("did not connect: %v", err)
} }
defer conn.Close() defer conn.Close()
c := pb.NewGreeterClient(conn)
// Contact the server and print out its response. // Contact the server and print out its response.
name := defaultName name := defaultName
if len(os.Args) > 1 { if len(os.Args) > 1 {
name = os.Args[1] name = os.Args[1]
} }
c := pb.NewGreeterClient(conn)
r, err := c.SayHello(context.Background(), &pb.HelloRequest{Name: name}) r, err := c.SayHello(context.Background(), &pb.HelloRequest{Name: name})
if err != nil { if err != nil {
log.Fatalf("could not greet: %v", err) log.Fatalf("could not greet: %v", err)

Loading…
Cancel
Save