From 831aedbe1be1324d04389363993c396a73664c1f Mon Sep 17 00:00:00 2001 From: Shouichi Kamiya Date: Wed, 6 Dec 2017 09:51:09 +0900 Subject: [PATCH] Use golang/protobuf instead of gogo/protobuf --- runtime/convert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/convert.go b/runtime/convert.go index eb6893b58bc..f8931864100 100644 --- a/runtime/convert.go +++ b/runtime/convert.go @@ -3,7 +3,7 @@ package runtime import ( "strconv" - "github.com/gogo/protobuf/jsonpb" + "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/ptypes/duration" "github.com/golang/protobuf/ptypes/timestamp" )