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. 30 Nov, 2018 1 commit
    • Miek Gieben's avatar
      Up to DNS version 1.1.0 (#2346) · 50ef7409
      Miek Gieben authored
      Upgrade to new dns lib version; that saw multiple improvements; some
      patch releases are in the pipeline.
      
      The big thing here is the removal of ErrTruncated, so we need to deal
      with this slightly different in the forward plugin. It removed the
      entire truncated.go logic and just checks the message for .Truncated (if
      there is a message) and retries with tcp.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      50ef7409
  2. 29 Nov, 2018 1 commit
  3. 28 Nov, 2018 1 commit
  4. 23 Nov, 2018 1 commit
  5. 21 Nov, 2018 3 commits
  6. 20 Nov, 2018 2 commits
  7. 16 Nov, 2018 3 commits
  8. 15 Nov, 2018 1 commit
    • Francois Tur's avatar
      Advertize email next to my github username (#2296) · 0492796f
      Francois Tur authored
      * Add email next to my github handle
      
      Following Governance description, I add my email next to my github handle.
      
      I would need for CNCF Graduation to show the different organizations the maintainers are from. Anyone with no email or personal email (like gmail) will be considered under its own organization.
      
      That would also help when vote will come-in, as we restraint votes for people on the same organization.
      
      @miekg :
      * I guess that will need change in the dreck project that parse this file.
      * Do you want me to PR the change on that project (miek/dreck) ?
      
      * Update with a comment
      Co-Authored-By: default avatarfturib <ftur@infoblox.com>
      0492796f
  9. 14 Nov, 2018 8 commits
  10. 13 Nov, 2018 3 commits
  11. 10 Nov, 2018 1 commit
  12. 08 Nov, 2018 2 commits
  13. 07 Nov, 2018 1 commit
  14. 05 Nov, 2018 2 commits
  15. 04 Nov, 2018 2 commits
  16. 03 Nov, 2018 4 commits
  17. 02 Nov, 2018 2 commits
    • Francois Tur's avatar
      Metrics registered on wrong prometheus registry (#2246) · 05204ef1
      Francois Tur authored
      * - UT on metrics verifying that all plugins of all blocs have their metrics collectors declared
      
      * - fix error msg
      
      * - redirect Registry of metric to the one that handle the listener
      - allow duplicate of metrics collector on the same Registry (case of same plugin in 2 blocs listening metrics on the same address)
      
      * - fix change of signature
      
      * - ensure cleaning metrics before starting the test (metrics collectors are global vars .. and re-used by several tests)
      
      * - I think I fixed this test. Ensure correct mn of hits and clean metrics before test.
      
      * - fix typo in error msg - proposed at review
      
      * - fix typo in comment
      
      * - remove ResetMetrics functions
      - change a way to test the numeric metrics : get the diff between begin and end of test
      
      * - oops. removing debug logs
      05204ef1
    • Chris O'Haver's avatar
      remove trailing whitespace (#2260) · f5aa6cac
      Chris O'Haver authored
      f5aa6cac
  18. 01 Nov, 2018 2 commits
    • Miek Gieben's avatar
      logging: unify pkg/log and plugin/log (#2245) · 24564164
      Miek Gieben authored
      Default to using pkg/log for all logging and use a fixed time prefix
      which is RFC3339Millli (doesn't exist in time, so we just extended
      RFC3339), i.e. Nano might be pushing it.
      
      Logs go from:
      
      2018/10/30 19:14:55 [INFO] CoreDNS-1.2.5
      2018/10/30 19:14:55 [INFO] linux/amd64, go1.11,
      
      to:
      
      2018-10-30T19:10:07.547Z [INFO] CoreDNS-1.2.5
      2018-10-30T19:10:07.547Z [INFO] linux/amd64, go1.11,
      
      Which includes the timezone - which oddly the std log package doesn't
      natively do.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      24564164
    • Carl-Magnus Björkell's avatar
      plugin/etcd: propagate recursion flag properly (#2254) · cfbfa5c0
      Carl-Magnus Björkell authored
      When fetching records via the etcd plugin, the recursion flag was never
      set properly according to if the caller requested an exact record match
      or not. This cause problems especially in CNAME lookups, where recursion
      took place and a random RR was returned instead of the one that was
      specifically added for this key. Even when there is no service attached
      on the given path, it is still wrong to return a random one from the
      recursion.
      
      Fixing by using the `exact` flag to decide if recursion should be done.
      cfbfa5c0