Valient Gough
Valient Gough
See linked issue (#16). I believe that connection management remains necessary. Those haven't been incorporated, so I have my own fork that contains those along with a number of other...
@tsony-tsonev Thanks. I've updated my repo to use Go modules rather than the dep vendoring.
@gakkiyomi There is more documentation in the readme: https://github.com/vgough/grpc-proxy/blob/master/proxy/README.md#type-streamdirector I think that normally you would be implementing a director, not calling one. The handler calls Release on the director when...
FYI, x-forwarded-for is supported in the fork https://github.com/vgough/grpc-proxy
I had been doing some post processing of the results before sending them to an html template renderer. I've since reorganized my code to avoid mutating the query result, or...
Ping. Any concern with having a more complete example?
Rebased PR against bazil/master. Please take a look.
One the cleanest ways I've seen is how `fx` does it. See https://uber-go.github.io/fx/lifecycle.html The lifecycle hook can be injected into any component in order to register startup / shutdown operations....