devCod3r opened a new pull request, #3692: URL: https://github.com/apache/eventmesh/pull/3692
Fixes #3159 ### Motivation Found a call to a method which will perform a byte to String (or String to byte) conversion, and will assume that the default platform encoding is suitable. This will cause the application behaviour to vary between platforms. Above issue is the reason why this change is introduced. Issue #3159 ### Modifications Modified response variable of RedirectClientByPathHandlerTest class present in Line 127 Earlier value of response variable used to be outputStream.toString() New value of response variable is outputStream.toString(Constants.DEFAULT_CHARSET.name()); ### Documentation - Does this pull request introduce a new feature? - Ans: no - If a feature is not applicable for documentation, explain why? - Ans: Modified a variable in RedirectClientByPathHandlerTest class. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
