You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to set up grpc-gateway for our project in golang 1.9. As you know golang.org/x/net/context is no longer there in this version, however the source code that needs to be included for the imports in the proto file, still tries to import golang.org/x/net/context. I am not sure how to move forward to fix this issue, any ideas ? (Except go get golang.org/x/net/context)
The text was updated successfully, but these errors were encountered:
That's probably the best way to go forward today. For now we maintain compatibility with the 2 latest versions of Go. Fortunately Go 1.10 is expected out in Feb which is pretty soon. When that's released we will migrate to the built in context package and this shouldn't be an issue any more.
Thanks so much for filing an issue! Without field reports we have no idea the things we need to focus on. I'm going to close this since we are already tracking this in #326 which I'm itching to close 😄.
Hi there,
I am trying to set up grpc-gateway for our project in golang 1.9. As you know
golang.org/x/net/context
is no longer there in this version, however the source code that needs to be included for the imports in the proto file, still tries to importgolang.org/x/net/context
. I am not sure how to move forward to fix this issue, any ideas ? (Exceptgo get golang.org/x/net/context
)The text was updated successfully, but these errors were encountered: