Commit Graph
3 Commits
Author SHA1 Message Date
Brandon WilliamsandGitHub de2e4ac077 feat(build): Better support for custom codecs (#999)
BREAKING CHANGE: `CODEC_PATH` moved from const to fn
2022-05-05 12:52:03 -04:00
Brandon WilliamsandLucio Franco c99d13c6e6 fix(transport): Fix infinite recursion in poll_ready (#192)
b90c340 (feat(transport): Allow custom IO and UDS example (#184),
2019-12-13) changed the Connector type to be more generic instead of
only allowing the HttpConnector type, during this change the
`Service::poll_ready` impl was changed from calling
`MakeConnection::poll_ready` on `self.http` to `self` resulting in
infinite recursion due to the blanket imple of
`MakeConnection::poll_ready` calling `Service::poll_ready`.

This fixes the bug by calling `MakeConnection::poll_ready` on
`self.inner` instead of `self`.

Fixes #191
2019-12-15 18:36:10 -05:00
Brandon WilliamsandLucio Franco f096a238ac chore(examples): add helloworld-client-blocking (#179)
Add an example of using a tonic client in a synchronous environment.
2019-12-12 09:48:27 -05:00