lwzhangMr commented on issue #1873:
URL:
https://github.com/apache/incubator-streampark/issues/1873#issuecomment-1286732473
// effective k-v regex pattern of submit.dynamicOption
private[this] lazy val DYNAMIC_OPTION_ITEM_PATTERN =
Pattern.compile("(.*?)=(.*?)")
此处的正则导致-Denv.java.opts="-Dfile.encoding=UTF-8" 拆分失败
建议1、修改正则,忽略双引号内部的=
建议2、将双引号内部的使用其他符号代替,例如:,最后将:替换成=
--
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]