Merge pull request #60 from hasAdamr/http_transport_hotfix

Fix http transport panic
This commit is contained in:
Adam Ryman 2016-09-28 18:49:43 -07:00 коммит произвёл GitHub
Родитель 4ae630e85e ab8c29388e
Коммит 0f3568ddf5
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -52,7 +52,7 @@ var ClientEncodeTemplate = `
// the http request (path, query, and body).
func EncodeHTTP{{$binding.Label}}Request(_ context.Context, r *http.Request, request interface{}) error {
fmt.Printf("Encoding request %v\n", request)
req := request.(pb.{{GoName $binding.Parent.RequestType}})
req := request.(*pb.{{GoName $binding.Parent.RequestType}})
_ = req
// Set the path parameters

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

@ -60,7 +60,7 @@ func TestGenClientEncode(t *testing.T) {
// the http request (path, query, and body).
func EncodeHTTPSumZeroRequest(_ context.Context, r *http.Request, request interface{}) error {
fmt.Printf("Encoding request %v\n", request)
req := request.(pb.SumRequest)
req := request.(*pb.SumRequest)
_ = req
// Set the path parameters