aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/zone.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/file/zone.go')
-rw-r--r--plugin/file/zone.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugin/file/zone.go b/plugin/file/zone.go
index b24cd91e8..186fdf8d0 100644
--- a/plugin/file/zone.go
+++ b/plugin/file/zone.go
@@ -30,7 +30,6 @@ type Zone struct {
Expired *bool
ReloadInterval time.Duration
- LastReloaded time.Time
reloadMu sync.RWMutex
reloadShutdown chan bool
Upstream *upstream.Upstream // Upstream for looking up external names during the resolution process.
@@ -53,7 +52,6 @@ func NewZone(name, file string) *Zone {
Tree: &tree.Tree{},
Expired: new(bool),
reloadShutdown: make(chan bool),
- LastReloaded: time.Now(),
}
*z.Expired = false
return z