shahidki31 commented on a change in pull request #26756:
[SPARK-30119][WebUI]Support Pagination for Completed Batch Table in Streaming
Tab
URL: https://github.com/apache/spark/pull/26756#discussion_r354388780
##########
File path: streaming/src/main/scala/org/apache/spark/streaming/ui/UIUtils.scala
##########
@@ -186,4 +191,21 @@ private[streaming] object UIUtils {
</td>
}
}
+
+ def decodeURLParameter(urlParam: String): String = {
+ var param = urlParam
+ var decodedParam = URLDecoder.decode(param, UTF_8.name())
+ while (param != decodedParam) {
+ param = decodedParam
+ decodedParam = URLDecoder.decode(param, UTF_8.name())
+ }
+ param
+ }
+
+ def prependBaseUri(
+ request: HttpServletRequest,
Review comment:
Is it necessary to add these method here?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]