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. 05 Aug, 2019 1 commit
  2. 04 Aug, 2019 1 commit
    • Matt Kulka's avatar
      plugin/route53: make refresh frequency adjustable (#3083) · 94468c41
      Matt Kulka authored
      the current update frequency for the refresh loop in the route 53 plugin is hard-coded
      to 1 minute. aws rate-limits the number of api requests so less frequent record refreshes
      can help when reaching those limits depending upon your individual scenarios. this pull
      adds a configuration option to the route53 plugin to adjust the refresh frequency.
      
      thanks for getting my last pull released so quickly. this is the last local change that
      i have been running and would love to get it contributed back to the project.
      Signed-off-by: default avatarMatt Kulka <mkulka@parchment.com>
      94468c41
  3. 03 Aug, 2019 1 commit
  4. 01 Aug, 2019 7 commits
  5. 31 Jul, 2019 4 commits
  6. 29 Jul, 2019 6 commits
  7. 28 Jul, 2019 3 commits
  8. 27 Jul, 2019 2 commits
  9. 26 Jul, 2019 5 commits
  10. 25 Jul, 2019 2 commits
  11. 24 Jul, 2019 1 commit
    • Miek Gieben's avatar
      plugin/file: simplify locking (#3024) · eba020e6
      Miek Gieben authored
      * plugin/file: simplify locking
      
      Simplify the locking, remove the reloadMu and just piggyback on the
      other lock for accessing content, which assumes things can be move
      underneath.
      
      Copy the Apex and Zone to new vars to make sure the pointer isn't
      updated from under us.
      
      The releadMu isn't need at all, the time.Ticker firing while we're
      reading means we will just miss that tick and get it on the next go.
      
      Add rrutil subpackage and put some more generic functions in there, that
      are now used from file and the tree package. This removes some
      duplication.
      
      Rename additionalProcessing that didn't actually do that to
      externalLookup, because that's what being done at some point.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * Update plugin/file/lookup.go
      Co-Authored-By: default avatarMichael Grosser <development@stp-ip.net>
      eba020e6
  12. 23 Jul, 2019 2 commits
  13. 22 Jul, 2019 1 commit
  14. 21 Jul, 2019 1 commit
    • Miek Gieben's avatar
      plugin/file: New zone should have zero records (#3025) · 01e13c62
      Miek Gieben authored
      After calling NewZone the number of records should be zero, but due to
      how zone.All() was implemented so empty RRs would be added. This then
      fails the == 0 check in xfr.go and put nil in the slice, this then
      subsequently panics on the Len().
      
      Fix this making All() smarter when adding records. Added little test to
      enfore this.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      01e13c62
  15. 19 Jul, 2019 3 commits