From 7a6edd653500dc462649a053f1148b9937ecb361 Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Mon, 22 Feb 2021 20:06:15 +0000 Subject: [PATCH] Update caddy import to use the one from coredns When caddy moved to v2, coredns chose to stay with v1 by moving it in-tree. Plugins need to update their imports to reflect this. Note that this will fail the build-coredns ci job until the openshift/coredns repo has been updated to the new version. I have tested it locally with a newer version and it works. --- setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.go b/setup.go index 089c5d7..f6a10bd 100644 --- a/setup.go +++ b/setup.go @@ -11,7 +11,7 @@ import ( "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" - "github.com/caddyserver/caddy" + "github.com/coredns/caddy" "github.com/celebdor/zeroconf" )