diff options
Diffstat (limited to 'plugin/dnstap/handler.go')
-rw-r--r-- | plugin/dnstap/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/dnstap/handler.go b/plugin/dnstap/handler.go index 63838492c..798da6014 100644 --- a/plugin/dnstap/handler.go +++ b/plugin/dnstap/handler.go @@ -79,7 +79,7 @@ func (h Dnstap) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) newCtx := context.WithValue(ctx, DnstapSendOption, &sendOption) rw := &taprw.ResponseWriter{ResponseWriter: w, Tapper: &h, Query: r, Send: &sendOption} - rw.QueryEpoch() + rw.SetQueryEpoch() code, err := plugin.NextOrFailure(h.Name(), h.Next, tapContext{newCtx, h}, rw, r) if err != nil { |