Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10180#discussion_r47740996
  
    --- Diff: 
core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala ---
    @@ -103,7 +103,11 @@ class HistoryServer(
           // Note we don't use the UI retrieved from the cache; the cache 
loader above will register
           // the app's UI, and all we need to do is redirect the user to the 
same URI that was
           // requested, and the proper data should be served at that point.
    -      res.sendRedirect(res.encodeRedirectURL(req.getRequestURI()))
    +      if (req.getQueryString == null) {
    --- End diff --
    
    oh sorry, I meant
    ```
    val requestURI = req.getRequestURI + Option(req.getQueryString).map("?" + 
_).getOrElse("")
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to