Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AbstractServiceBuilder printing multiple warnings about missing name() method on gRPC service method annotations #9508

Closed
rlubke opened this issue Nov 19, 2024 · 0 comments
Assignees
Labels

Comments

@rlubke
Copy link
Contributor

rlubke commented Nov 19, 2024

Environment Details

  • Helidon Version: 4 1 3
  • Helidon MP
  • JDK version: 21.0.5
  • OS: MacOS 14.7.1

Problem Description

When reviewing the logs after running my unit tests, I'm seeing the following warnings logged for each annotated gRPC service method:

2024.11.19 10:21:09 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.ServerStreaming("") has no name() method                                                                                                              │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method                                                                                                                        │
2024.11.19 10:21:10 WARNING io.helidon.microprofile.grpc.core.AbstractServiceBuilder Thread[#1,main,5,main]: Annotation @io.helidon.grpc.api.Grpc.Unary("") has no name() method  

Steps to reproduce

  1. Check out the helidon_4_1 branch from https://github.com/coherence-community/todo-list-example
  2. Build and run the tests in java/helidon-server
  3. Review target/failsafe-reports/TEST-com.oracle.coherence.examples.todo.server.MetricsIT.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Closed
Development

No branches or pull requests

3 participants