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. 04 Mar, 2019 5 commits
  2. 03 Mar, 2019 4 commits
  3. 02 Mar, 2019 1 commit
  4. 01 Mar, 2019 2 commits
  5. 28 Feb, 2019 1 commit
  6. 27 Feb, 2019 5 commits
  7. 26 Feb, 2019 1 commit
  8. 25 Feb, 2019 3 commits
  9. 24 Feb, 2019 2 commits
  10. 22 Feb, 2019 2 commits
  11. 21 Feb, 2019 6 commits
  12. 20 Feb, 2019 1 commit
  13. 19 Feb, 2019 1 commit
  14. 18 Feb, 2019 2 commits
  15. 17 Feb, 2019 4 commits
    • Miek Gieben's avatar
      Upgrade caddy to 0.11.X (#2541) · 2743c8ea
      Miek Gieben authored
      * Upgrade caddy to 0.11.2
      
      Redo of #2505 (cherry-picked commit)
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * .4 has been released
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      2743c8ea
    • Miek Gieben's avatar
      plugin/reload: fix data races (#2567) · a72f3a16
      Miek Gieben authored
      Reload didn't take proper care to protect the fields from use in
      different goroutines. Add a mutex and add helpers for usage and
      interval.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      a72f3a16
    • mrasu's avatar
      plugin/auto: Reload zones every one minute (#2516) · 362d7e96
      mrasu authored
      Automatically submitted.
      362d7e96
    • mrasu's avatar
      Fix a flaky test by not depending on Google (#2565) · 643dfd74
      mrasu authored
      TestLookupAutoPathErratic sometimes fail on TravisCI saying below
      
      ```
      === RUN   TestLookupAutoPathErratic
      --- FAIL: TestLookupAutoPathErratic (8.30s)
          erratic_autopath_test.go:39: Test 0, failed to sent query: "read udp [::1]:39758->[::1]:56643: i/o timeout"
      FAIL
      ```
      
      The failure happens when Google replies slowly.
      This PR changes to not use Google but run CoreDNS locally and proxy to the server.
      
      ---
      
      Because the failure depends on Google, sometimes it happens frequently but sometimes it doesn't happen.
      I hope following test help you reproduce it.
      
      ```
      func TestLookupAutoPathErratic2(t *testing.T) {
      	for i := 0; i < 200; i++ {
      		TestLookupAutoPathErratic(t)
      	}
      }
      ```
      
      or I can reproduce it by changing proxy to other DNS like 1.1.1.1 instead of 8.8.8.8 too
      643dfd74