genuinner opened a new pull request, #15245:
URL: https://github.com/apache/dolphinscheduler/pull/15245
change split("=") to split("=", 2)
here is an example show the difference
for string "name=wood$VarPool$password=kdo@%=dew$VarPool$desc="
using split("=", 2) we get {"name":"wood",password:"kdo@%=dew","desc":""}
using split("=") we get {"name":"wood",password:"kdo@%"} and an
ArrayOutOfIndexException when parse "desc"
--
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]