From 01d9a2f589a03b51c100d9995663bc608d91d3ac Mon Sep 17 00:00:00 2001 From: Juan Font Alonso Date: Sat, 30 Apr 2022 23:48:28 +0200 Subject: [PATCH] Fixed linting issues --- app.go | 3 ++- derp_server.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app.go b/app.go index 8a434363..f2f481f8 100644 --- a/app.go +++ b/app.go @@ -322,7 +322,8 @@ func (h *Headscale) expireEphemeralNodesWorker() { func (h *Headscale) grpcAuthenticationInterceptor(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, - handler grpc.UnaryHandler) (interface{}, error) { + handler grpc.UnaryHandler, +) (interface{}, error) { // Check if the request is coming from the on-server client. // This is not secure, but it is to maintain maintainability // with the "legacy" database-based client diff --git a/derp_server.go b/derp_server.go index 6580419e..daec79a4 100644 --- a/derp_server.go +++ b/derp_server.go @@ -122,7 +122,7 @@ func (h *Headscale) DERPHandler(ctx *gin.Context) { if !fastStart { pubKey := h.privateKey.Public() - pubKeyStr := pubKey.UntypedHexString() // nolint + pubKeyStr := pubKey.UntypedHexString() fmt.Fprintf(conn, "HTTP/1.1 101 Switching Protocols\r\n"+ "Upgrade: DERP\r\n"+ "Connection: Upgrade\r\n"+