This project is mirrored from https://github.com/coredns/coredns.git. The repository failed to update .
Repository mirroring has been paused due to too many failed attempts, and can be resumed by a project maintainer.
Last successful update .
  1. 17 May, 2018 1 commit
    • Ruslan Drozhdzh's avatar
      Probe simplification (#1784) · cffa1948
      Ruslan Drozhdzh authored
      * Probe simplification
      
       - the main reason of rework is that previous implementation hung
         when calling Do() after Stop()
      
      * replace atomics with mutex
      
      * access Probe.interval under lock
      cffa1948
  2. 16 May, 2018 1 commit
  3. 12 May, 2018 3 commits
  4. 11 May, 2018 1 commit
  5. 10 May, 2018 2 commits
  6. 09 May, 2018 7 commits
  7. 08 May, 2018 1 commit
  8. 06 May, 2018 4 commits
  9. 05 May, 2018 1 commit
  10. 04 May, 2018 1 commit
  11. 03 May, 2018 1 commit
  12. 02 May, 2018 1 commit
    • Miek Gieben's avatar
      Do Compress only when need in request.Scrub (#1760) · 57352924
      Miek Gieben authored
      * Remove Compress by default
      
      Set Compress = true in Scrub only when the message doesn not fit the
      advertized buffer. Doing compression is expensive, so try to avoid it.
      
      Master vs this branch
      pkg: github.com/coredns/coredns/plugin/cache
      BenchmarkCacheResponse-2   	   50000	     24774 ns/op
      
      pkg: github.com/coredns/coredns/plugin/cache
      BenchmarkCacheResponse-2   	  100000	     21960 ns/op
      
      * and make it compile
      57352924
  13. 01 May, 2018 2 commits
  14. 28 Apr, 2018 6 commits
  15. 27 Apr, 2018 5 commits
  16. 26 Apr, 2018 3 commits
    • Miek Gieben's avatar
      Do ' go vet' after we have fetch the repos (#1744) · 3ce4fc8f
      Miek Gieben authored
      Do ' go vet' after we have fetched the repos
      3ce4fc8f
    • Miek Gieben's avatar
      plugin/forward: move Dial goroutine out (#1738) · 270da829
      Miek Gieben authored
      Rework the TestProxyClose - close the proxy in the *same* goroutine
      as where we started it. Close channels as long as we don't get dataraces
      (this may need another fix).
      
      Move the Dial goroutine out of the connManager - this simplifies things
      *and* makes another goroutine go away and removes the need for connErr
      channels - can now just be dns.Conn.
      
      Also:
      
      Revert "plugin/forward: gracefull stop (#1701)"
      This reverts commit 135377bf.
      
      Revert "rework TestProxyClose (#1735)"
      This reverts commit 9e8893a0.
      270da829
    • Miek Gieben's avatar
      plugin/health: update README (#1739) · 4c7ae4ea
      Miek Gieben authored
      * plugin/health: update README
      
      Make more clear in the readme that health is limited to 1 server.
      
      Fixes #1722
      
      * rephrase and remove ~~~ corefile because it will fail
      4c7ae4ea