From fd29a98c901e8ae0a0f4535d15661540a38c25c4 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 22 Jan 2026 21:03:05 +0800 Subject: [PATCH] chore: fix linter --- server/router/api/v1/instance_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/router/api/v1/instance_service.go b/server/router/api/v1/instance_service.go index 9d0f7fac0..48f3614ee 100644 --- a/server/router/api/v1/instance_service.go +++ b/server/router/api/v1/instance_service.go @@ -293,6 +293,6 @@ func (s *APIV1Service) GetInstanceOwner(ctx context.Context) (*v1pb.User, error) // ClearInstanceOwnerCache clears the cached instance owner. // This should be called when an admin user is created or when the owner changes. -func (s *APIV1Service) ClearInstanceOwnerCache() { +func (*APIV1Service) ClearInstanceOwnerCache() { ownerCache = nil }