From b376a20fb48c4a2538076e8b39b68120078ac296 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 20 Aug 2024 08:25:34 +0800 Subject: [PATCH] chore: tweak linter warnings --- plugin/idp/oauth2/oauth2_test.go | 2 +- server/router/api/v1/memo_service.go | 1 - server/server.go | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/plugin/idp/oauth2/oauth2_test.go b/plugin/idp/oauth2/oauth2_test.go index 6c07fea9..90e3f3ed 100644 --- a/plugin/idp/oauth2/oauth2_test.go +++ b/plugin/idp/oauth2/oauth2_test.go @@ -98,7 +98,7 @@ func newMockServer(t *testing.T, code, accessToken string, userinfo []byte) *htt }) require.NoError(t, err) }) - mux.HandleFunc("/oauth2/userinfo", func(w http.ResponseWriter, r *http.Request) { + mux.HandleFunc("/oauth2/userinfo", func(w http.ResponseWriter, _ *http.Request) { w.Header().Set("Content-Type", "application/json") _, err := w.Write(userinfo) require.NoError(t, err) diff --git a/server/router/api/v1/memo_service.go b/server/router/api/v1/memo_service.go index 8e552272..b38e9198 100644 --- a/server/router/api/v1/memo_service.go +++ b/server/router/api/v1/memo_service.go @@ -60,7 +60,6 @@ func (s *APIV1Service) CreateMemo(ctx context.Context, request *v1pb.CreateMemoR } if len(create.Content) > contentLengthLimit { return nil, status.Errorf(codes.InvalidArgument, "content too long (max %d characters)", contentLengthLimit) - } property, err := memoproperty.GetMemoPropertyFromContent(create.Content) if err != nil { diff --git a/server/server.go b/server/server.go index 4e7ee6da..211d13f2 100644 --- a/server/server.go +++ b/server/server.go @@ -9,7 +9,7 @@ import ( "time" "github.com/google/uuid" - grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery" + grpcrecovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery" "github.com/labstack/echo/v4" "github.com/labstack/echo/v4/middleware" "github.com/pkg/errors" @@ -78,7 +78,7 @@ func NewServer(ctx context.Context, profile *profile.Profile, store *store.Store grpc.MaxRecvMsgSize(100*1024*1024), grpc.ChainUnaryInterceptor( apiv1.NewLoggerInterceptor().LoggerInterceptor, - grpc_recovery.UnaryServerInterceptor(), + grpcrecovery.UnaryServerInterceptor(), apiv1.NewGRPCAuthInterceptor(store, secret).AuthenticationInterceptor, )) s.grpcServer = grpcServer