diff options
author | 2018-01-23 10:35:31 +0000 | |
---|---|---|
committer | 2018-01-23 10:35:31 +0000 | |
commit | 9575789c363d9fc72eb96f3263e94d2037142335 (patch) | |
tree | 152e41f0ce61ce94818ad1fc844dd01cfcaf5cb4 /plugin/file/secondary.go | |
parent | 85457cf50dd45a4b3cbf9425007831ee07d34916 (diff) | |
download | coredns-9575789c363d9fc72eb96f3263e94d2037142335.tar.gz coredns-9575789c363d9fc72eb96f3263e94d2037142335.tar.zst coredns-9575789c363d9fc72eb96f3263e94d2037142335.zip |
plugin/secondary: don't duplicate apex records (#1413)
See #1400 and the discussion in that bug.
Fixes #1400
Diffstat (limited to 'plugin/file/secondary.go')
-rw-r--r-- | plugin/file/secondary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/file/secondary.go b/plugin/file/secondary.go index 83887c9ed..0d8f70069 100644 --- a/plugin/file/secondary.go +++ b/plugin/file/secondary.go @@ -16,7 +16,7 @@ func (z *Zone) TransferIn() error { m := new(dns.Msg) m.SetAxfr(z.origin) - z1 := z.Copy() + z1 := z.CopyWithoutApex() var ( Err error tr string |