You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2019/07/03 16:19:51 UTC

[GitHub] [spark] gaborgsomogyi commented on a change in pull request #25045: [MINOR] Add requestHeaderSize debug log

gaborgsomogyi commented on a change in pull request #25045: [MINOR] Add requestHeaderSize debug log
URL: https://github.com/apache/spark/pull/25045#discussion_r300047517
 
 

 ##########
 File path: core/src/main/scala/org/apache/spark/ui/JettyUtils.scala
 ##########
 @@ -297,7 +297,9 @@ private[spark] object JettyUtils extends Logging {
         (connector, connector.getLocalPort())
       }
       val httpConfig = new HttpConfiguration()
-      httpConfig.setRequestHeaderSize(conf.get(UI_REQUEST_HEADER_SIZE).toInt)
+      val requestHeaderSize = conf.get(UI_REQUEST_HEADER_SIZE).toInt
+      logDebug(s"Using requestHeaderSize: $requestHeaderSize")
+      httpConfig.setRequestHeaderSize(requestHeaderSize)
 
 Review comment:
   You understand it correctly, it's needed in previous versions as well.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org