diff options
Diffstat (limited to 'plugin/kubernetes/autopath.go')
-rw-r--r-- | plugin/kubernetes/autopath.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/kubernetes/autopath.go b/plugin/kubernetes/autopath.go index 45fe26088..cf5a7f06a 100644 --- a/plugin/kubernetes/autopath.go +++ b/plugin/kubernetes/autopath.go @@ -10,7 +10,7 @@ import ( // AutoPath implements the AutoPathFunc call from the autopath plugin. // It returns a per-query search path or nil indicating no searchpathing should happen. func (k *Kubernetes) AutoPath(state request.Request) []string { - // Check if the query falls in a zone we are actually authoriative for and thus if we want autopath. + // Check if the query falls in a zone we are actually authoritative for and thus if we want autopath. zone := plugin.Zones(k.Zones).Matches(state.Name()) if zone == "" { return nil |