The `apache/thrift` recently released a new version of `0.11.0` several days ago. This release is compatible with other packages and as such, there is no need to pinning the `apache/thrift` to `master` anymore in Gopkg.toml. This fix removes the pinning of `apache/thrift` in Gopkg.toml, and updates all dependencies of coredns. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> |
||
---|---|---|
.. | ||
breaker | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
README.md |
go-resiliency
Resiliency patterns for golang. Based in part on Hystrix, Semian, and others.
Currently implemented patterns include:
- circuit-breaker (in the
breaker
directory) - semaphore (in the
semaphore
directory) - deadline/timeout (in the
deadline
directory) - batching (in the
batcher
directory) - retriable (in the
retrier
directory)
Follows semantic versioning using https://gopkg.in/ - import from
gopkg.in/eapache/go-resiliency.v1
for guaranteed API stability.