1. python的超时2. go的超时 1. python的超时response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'), timeout=30) 2. go的超时ctx, cancel := context.WithTimeout(context.TODO(), time.Second * 3)defer cancel()r,err := c.SayHello(ctx, &pb.HelloRequest{Name: name})