SHA-4096 commented on code in PR #2687:
URL: https://github.com/apache/dubbo-go/pull/2687#discussion_r1644547269


##########
server/server.go:
##########
@@ -180,6 +181,18 @@ func (s *Server) exportServices() (err error) {
                        err = svcOpts.ExportWithoutInfo()
                } else {
                        info := infoRaw.(*ServiceInfo)
+                       //Add a method with a name of a differtent first-letter 
case
+                       //to achieve interoperability with java
+                       var additionalMethods []MethodInfo
+                       for _, method := range info.Methods {
+                               newMethod := method
+                               newMethod.Name = 
dubboutil.SwapCaseFirstRune(method.Name)

Review Comment:
   I'll have a look at other solutions



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to