mirror of
https://github.com/coredns/coredns.git
synced 2025-10-31 18:23:13 -04:00
This fix is an vendor update. Both ugorji and thrift have to be pinned to compile. The ugorji is from etcd and thrift is from zipkin. This fix fixes #1802. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
go-resiliency
Resiliency patterns for golang. Based in part on Hystrix, Semian, and others.
Currently implemented patterns include:
- circuit-breaker (in the
breakerdirectory) - semaphore (in the
semaphoredirectory) - deadline/timeout (in the
deadlinedirectory) - batching (in the
batcherdirectory) - retriable (in the
retrierdirectory)
Follows semantic versioning using https://gopkg.in/ - import from
gopkg.in/eapache/go-resiliency.v1
for guaranteed API stability.