You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run into this when compiling the ExampeSuite tests we added to the Akka Serverless Java SDK.
We have two tests that define an alternative Empty message. The proto definition uses both and then akka-grpc will generate a service with twice the identified EmptySerializer.
public static classSerializers {
public static ProtobufSerializer<org.example.service.ServiceOuterClass.MyRequest> MyRequestSerializer=newGoogleProtobufSerializer<>(org.example.service.ServiceOuterClass.MyRequest.parser());
public static ProtobufSerializer<org.external.ExternalDomain.Empty> EmptySerializer=newGoogleProtobufSerializer<>(org.external.ExternalDomain.Empty.parser());
public static ProtobufSerializer<com.google.protobuf.Empty> EmptySerializer=newGoogleProtobufSerializer<>(com.google.protobuf.Empty.parser());
}
The text was updated successfully, but these errors were encountered:
I run into this when compiling the ExampeSuite tests we added to the Akka Serverless Java SDK.
We have two tests that define an alternative
Empty
message. The proto definition uses both and then akka-grpc will generate a service with twice the identifiedEmptySerializer
.The text was updated successfully, but these errors were encountered: