s0nskar commented on code in PR #417:
URL: https://github.com/apache/incubator-livy/pull/417#discussion_r1321657997
##########
server/src/main/scala/org/apache/livy/utils/SparkProcessBuilder.scala:
##########
@@ -154,6 +154,12 @@ class SparkProcessBuilder(livyConf: LivyConf) extends
Logging {
this
}
+ def escapeBackTicks(arg: String): String = {
+ // Unescape the args first then escape it again to avoid double escaping
+ val tmp = arg.replace("\\`", "`")
Review Comment:
done
--
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]