diff --git a/ping_client/main.go b/ping_client/main.go index 1598afb..68b8114 100644 --- a/ping_client/main.go +++ b/ping_client/main.go @@ -43,16 +43,14 @@ func main() { for i = 1; ; i++ { rtt := time.Now() - ctx, cancel = context.WithTimeout(context.Background(), 10*time.Second) + ctx, cancel = context.WithTimeout(context.Background(), time.Second) r, err := c.Ping(ctx, &pb.PingRequest{Data: data, Seq: i}) if err != nil { log.Printf("could not connect to: %v", err) time.Sleep(1 * time.Second) continue } - // log.Printf("%d characters roundtrip to (%s): seq=%d time=%s", len(r.Data), address, r.Seq, time.Since(rtt)) fmt.Printf("%d bytes from %s: seq=%d time=%s\n", len(r.Data), address, r.Seq, time.Since(rtt)) - //log.Printf("Received: %v", r.Data) time.Sleep(1 * time.Second) } }