Remove redundant gRPC auth interceptor

This commit is contained in:
Joe Julian
2026-04-10 23:48:25 -07:00
parent 533fb2d550
commit bc226647e1
3 changed files with 3 additions and 26 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ func StartHost(addr string, lifecycle lifecycleBackend, profiles map[string]pass
}
service := NewServerWithLifecycle(vault.Model{}, profiles, clipboardWriter, lifecycle)
server := grpc.NewServer(grpc.UnaryInterceptor(AuthInterceptor(service)))
server := grpc.NewServer()
keepassgov1.RegisterVaultServiceServer(server, service)
host := &Host{