diff options
author | 2017-09-26 19:41:49 +0100 | |
---|---|---|
committer | 2017-09-26 19:41:49 +0100 | |
commit | 44a0cb9557b4554e1359ad0d0c11fb64ddd77a76 (patch) | |
tree | 568432fcbdcd711ef92e6280ba48b01e6a35b4be /test | |
parent | daf8ef0da8a9aafc610f7a3dbcf021ec4365ee72 (diff) | |
download | coredns-44a0cb9557b4554e1359ad0d0c11fb64ddd77a76.tar.gz coredns-44a0cb9557b4554e1359ad0d0c11fb64ddd77a76.tar.zst coredns-44a0cb9557b4554e1359ad0d0c11fb64ddd77a76.zip |
test: fix zone file (#1112)
* test: fix zone file
Add missing $TTL 3600 as the top.
Recent change in Go DNS made this mandatory - old behavior wasn't
standards compliant.
* and here
Diffstat (limited to 'test')
-rw-r--r-- | test/example_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/example_test.go b/test/example_test.go index 5a71d3e3c..39d4ec49c 100644 --- a/test/example_test.go +++ b/test/example_test.go @@ -1,6 +1,7 @@ package test const exampleOrg = `; example.org test file +$TTL 3600 example.org. IN SOA sns.dns.icann.org. noc.dns.icann.org. 2015082541 7200 3600 1209600 3600 example.org. IN NS b.iana-servers.net. example.org. IN NS a.iana-servers.net. |