dongjoon-hyun commented on code in PR #57549:
URL: https://github.com/apache/spark/pull/57549#discussion_r3693956659


##########
core/src/main/scala/org/apache/spark/ui/JettyUtils.scala:
##########
@@ -209,6 +209,25 @@ private[spark] object JettyUtils extends Logging {
           .orNull
       }
 
+      override def addProxyHeaders(
+          clientRequest: HttpServletRequest,
+          proxyRequest: org.eclipse.jetty.client.Request): Unit = {

Review Comment:
   This file already uses the rename-import pattern for Jetty client classes
   (`import org.eclipse.jetty.client.{Response => CResponse}`), so let's follow 
it
   instead of using the fully qualified name here:
   
   ```suggestion
             proxyRequest: CRequest): Unit = {
   ```
   
   with the import updated accordingly:
   
   ```scala
   import org.eclipse.jetty.client.{Request => CRequest, Response => CResponse}
   ```



-- 
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]

Reply via email to