From 4409ca1dfc1317d7a73409541504631f5a180642 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 9 Aug 2022 14:22:13 +0100 Subject: [PATCH] Fix API path for `PerformDeleteKeys` --- keyserver/inthttp/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyserver/inthttp/server.go b/keyserver/inthttp/server.go index efa5ceebb..4e5f9fba4 100644 --- a/keyserver/inthttp/server.go +++ b/keyserver/inthttp/server.go @@ -27,7 +27,7 @@ func AddRoutes(internalAPIMux *mux.Router, s api.KeyInternalAPI) { ) internalAPIMux.Handle( - PerformClaimKeysPath, + PerformDeleteKeysPath, httputil.MakeInternalRPCAPI("KeyserverPerformDeleteKeys", s.PerformDeleteKeys), )