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 15:56:24 UTC

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

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

 ##########
 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:
   Hi, @gaborgsomogyi . You need this in the older branches, too? Did I understand correct?

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