mirror of https://github.com/grpc/grpc.io.git
Remove flag.Parse() line from go basic guide (#1241)
This commit is contained in:
parent
ed84ebd9ae
commit
523b917672
|
|
@ -359,8 +359,7 @@ so that clients can actually use our service. The following snippet shows how we
|
||||||
do this for our `RouteGuide` service:
|
do this for our `RouteGuide` service:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
flag.Parse()
|
lis, err := net.Listen("tcp", fmt.Sprintf("localhost:%d", port))
|
||||||
lis, err := net.Listen("tcp", fmt.Sprintf("localhost:%d", *port))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("failed to listen: %v", err)
|
log.Fatalf("failed to listen: %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue