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. 09 Jan, 2019 1 commit
  2. 08 Jan, 2019 3 commits
  3. 06 Jan, 2019 4 commits
  4. 05 Jan, 2019 3 commits
  5. 04 Jan, 2019 1 commit
  6. 31 Dec, 2018 1 commit
  7. 17 Dec, 2018 4 commits
  8. 16 Dec, 2018 1 commit
  9. 15 Dec, 2018 1 commit
  10. 14 Dec, 2018 1 commit
  11. 12 Dec, 2018 2 commits
  12. 11 Dec, 2018 1 commit
  13. 10 Dec, 2018 1 commit
    • Miek Gieben's avatar
      map bool -> map struct{} (#2386) · 9abbf4a4
      Miek Gieben authored
      This clear out the remaining map[x]bool usage and moves the bool to an
      empty struct.
      
      Two note worthy other changes:
      
      * EnableChaos in the server is now also exported to make it show up in
        the documentation.
      * The auto plugin is left as is, because there the boolean is
        explicitaly set to false to signal 'to-be-deleted' and the key is left
        as-is.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      9abbf4a4
  14. 09 Dec, 2018 2 commits
  15. 08 Dec, 2018 4 commits
  16. 07 Dec, 2018 4 commits
  17. 06 Dec, 2018 1 commit
  18. 05 Dec, 2018 1 commit
  19. 04 Dec, 2018 1 commit
  20. 02 Dec, 2018 1 commit
  21. 01 Dec, 2018 2 commits
    • Miek Gieben's avatar
      plugin/forward: remove truncate logic (#2320) · 4c86e546
      Miek Gieben authored
      I think this is causing problem and it will actually clash with the
      scrubbing that now happens for all plugins anyway. We're assuming the
      returned message will be valid even with tc being set. request.Scrub
      follows that same logic.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      4c86e546
    • Miek Gieben's avatar
      pkg/up: implement backoff (#2342) · bae9514e
      Miek Gieben authored
      * pkg/up: implement backoff
      
      Every 2nd failure we double the interval until we hit 4 * interval. This
      to have some sort of backoff, esp when a large cluster of coredns shares
      an upstream (original intent of up package) they will hammer the
      upstream. This put some back pressure on that.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * Update plugin/pkg/up/up.go
      Co-Authored-By: default avatarmiekg <miek@miek.nl>
      bae9514e