plugin/template: fix panic when missing next handler (#3672)
Signed-off-by: Andy Bursavich <abursavich@gmail.com>
This commit is contained in:
parent
e148948ca9
commit
1da96807ec
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ func (h Handler) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg)
|
|||
return template.rcode, nil
|
||||
}
|
||||
|
||||
return h.Next.ServeDNS(ctx, w, r)
|
||||
return plugin.NextOrFailure(h.Name(), h.Next, ctx, w, r)
|
||||
}
|
||||
|
||||
// Name implements the plugin.Handler interface.
|
||||
|
|
Loading…
Add table
Reference in a new issue