mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
plugin/template: fix formatting with go fmt (#5622)
Signed-off-by: Erik Johansson <ejohansson@spotify.com> Signed-off-by: Erik Johansson <ejohansson@spotify.com>
This commit is contained in:
@@ -151,10 +151,10 @@ func executeRRTemplate(server, view, section string, template *gotmpl.Template,
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newTemplate(name, text string) (*gotmpl.Template, error) {
|
func newTemplate(name, text string) (*gotmpl.Template, error) {
|
||||||
funcMap := gotmpl.FuncMap{
|
funcMap := gotmpl.FuncMap{
|
||||||
"parseInt": strconv.ParseUint,
|
"parseInt": strconv.ParseUint,
|
||||||
}
|
}
|
||||||
return gotmpl.New(name).Funcs(funcMap).Parse(text)
|
return gotmpl.New(name).Funcs(funcMap).Parse(text)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t template) match(ctx context.Context, state request.Request) (*templateData, bool, bool) {
|
func (t template) match(ctx context.Context, state request.Request) (*templateData, bool, bool) {
|
||||||
|
|||||||
@@ -284,7 +284,7 @@ func TestHandler(t *testing.T) {
|
|||||||
qtype: dns.TypeANY,
|
qtype: dns.TypeANY,
|
||||||
qname: "test.example.",
|
qname: "test.example.",
|
||||||
expectedCode: dns.RcodeServerFailure,
|
expectedCode: dns.RcodeServerFailure,
|
||||||
expectedErr: "template: answer:1:26: executing \"answer\" at <parseInt \"gg\" 16 8>: error calling parseInt: strconv.ParseUint: parsing \"gg\": invalid syntax",
|
expectedErr: "template: answer:1:26: executing \"answer\" at <parseInt \"gg\" 16 8>: error calling parseInt: strconv.ParseUint: parsing \"gg\": invalid syntax",
|
||||||
verifyResponse: func(r *dns.Msg) error {
|
verifyResponse: func(r *dns.Msg) error {
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user