You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by Devian-ua <gi...@git.apache.org> on 2016/07/29 20:19:18 UTC

[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

GitHub user Devian-ua opened a pull request:

    https://github.com/apache/spark/pull/14409

    [SPARK-16796] [Web UI] Visible passwords on Spark environment page

    ## What changes were proposed in this pull request?
    
    Mask spark.ssl.keyPassword, spark.ssl.keyStorePassword, spark.ssl.trustStorePassword in Web UI environment page.
    (Changes their values to ***** in env. page)
    
    
    ## How was this patch tested?
    
    I've built spark, run spark shell and checked that this values have been masked with *****.
    
    Also run tests:
    ./dev/run-tests
    
    [info] ScalaTest
    [info] Run completed in 1 hour, 9 minutes, 5 seconds.
    [info] Total number of tests run: 2166
    [info] Suites: completed 65, aborted 0
    [info] Tests: succeeded 2166, failed 0, canceled 0, ignored 590, pending 0
    [info] All tests passed.
    
    ![mask](https://cloud.githubusercontent.com/assets/15244468/17262154/7641e132-55e2-11e6-8a6c-30ead77c7372.png)
    
    


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/Devian-ua/spark maskpass

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/14409.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #14409
    
----
commit a9376cbe3409cd18f1c859f82908de9ebe844572
Author: Artur Sukhenko <as...@maprtech.com>
Date:   2016-07-29T20:07:20Z

    [SPARK-16796] [Web UI] Visible passwords on Spark environment page

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by ajbozarth <gi...@git.apache.org>.
Github user ajbozarth commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Lets open a follow up JIRA on this, but I would say that similar to `password`, `secret` could be masked for all instances


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

Posted by ajbozarth <gi...@git.apache.org>.
Github user ajbozarth commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14409#discussion_r72856642
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/env/EnvironmentPage.scala ---
    @@ -25,12 +25,20 @@ import org.apache.spark.ui.{UIUtils, WebUIPage}
     
     private[ui] class EnvironmentPage(parent: EnvironmentTab) extends WebUIPage("") {
       private val listener = parent.listener
    -
    +  val passwordProperties: Seq[String] = Seq("spark.ssl.keyPassword",
    +    "spark.ssl.keyStorePassword", "spark.ssl.trustStorePassword")
    +
    +  def removePass(kv: (String, String)): (String, String) = {
    +    if (passwordProperties.contains(kv._1)) {
    --- End diff --
    
    Based on @srowen suggestion in the JIRA, maybe we should do a substring check for any prop with "password" in it, that could make this more of a generic check. Or is there a prop with "password" in it that we wouldn't want to obfuscate?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Merged to master


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    This was all merged to master, meaning 2.1.x


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen Made removePass `private`. Also now it filters all properties containing "password"


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @ajbozarth What if some property will be be intoruduced containing "password" in its name, but not having password in its value?
    
    @dongjoon-hyun I can change it to Set.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by ajbozarth <gi...@git.apache.org>.
Github user ajbozarth commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    I'd say that that a property like that was poorly named, but it is still a valid possibility so leaving it as you have it is probably better


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    If it's truly just an addendum to this issue, tacked on, just attach to the existing issue.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14409#discussion_r72903778
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/env/EnvironmentPage.scala ---
    @@ -25,12 +25,20 @@ import org.apache.spark.ui.{UIUtils, WebUIPage}
     
     private[ui] class EnvironmentPage(parent: EnvironmentTab) extends WebUIPage("") {
       private val listener = parent.listener
    -
    +  val passwordProperties: Set[String] = Set("spark.ssl.keyPassword",
    +    "spark.ssl.keyStorePassword", "spark.ssl.trustStorePassword")
    +
    +  def removePass(kv: (String, String)): (String, String) = {
    --- End diff --
    
    `private`? agree with filtering anything whose key has "password" (not case sensitive). Check for other instances where listener.sparkProperties is accessed too?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14409#discussion_r72908182
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/env/EnvironmentPage.scala ---
    @@ -26,11 +26,17 @@ import org.apache.spark.ui.{UIUtils, WebUIPage}
     private[ui] class EnvironmentPage(parent: EnvironmentTab) extends WebUIPage("") {
       private val listener = parent.listener
     
    +  private def removePass(kv: (String, String)): (String, String) = {
    +    if (kv._1.toLowerCase.contains("password")) {
    +      return (kv._1, "******")
    +    }
    +    kv
    +  }
       def render(request: HttpServletRequest): Seq[Node] = {
         val runtimeInformationTable = UIUtils.listingTable(
           propertyHeader, jvmRow, listener.jvmInformation, fixedWidth = true)
         val sparkPropertiesTable = UIUtils.listingTable(
    -      propertyHeader, propertyRow, listener.sparkProperties, fixedWidth = true)
    +      propertyHeader, propertyRow, listener.sparkProperties.map(removePass), fixedWidth = true)
    --- End diff --
    
    This may be just taste, but isn't this easier inline?
    
    ```
    val redactedProperties = listener.sparkProperties.map { case (key, value) => 
      (key, if (key.toLowerCase.contains("password")) "******" else value)
    }
    ```
    
    Are there any other instances where properties are displayed that need redacting?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    I'm OK back-porting further. It's minor and a potential security improvement. I don't think the 1.5 branch is active though.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Merged build finished. Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Yes, this is merged now.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen I've opened https://github.com/apache/spark/pull/14484


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    **[Test build #63128 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63128/consoleFull)** for PR 14409 at commit [`e4b617c`](https://github.com/apache/spark/commit/e4b617c576868d42b57acdc0192e23b81ffc4bf4).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by n-marion <gi...@git.apache.org>.
Github user n-marion commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Thanks for the quick response. I did see this in 2.1.X branch; but #14409 made it into 2.0.X, which was merged on August 3rd, while #14484 didn't which was merged on August 5th. 
    
    Although its a small change, providing sensitive information on a web UI isn't ideal, it is IMO important enough to make it into Spark 2.0.2. 


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by a-roberts <gi...@git.apache.org>.
Github user a-roberts commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @Devian-ua 
    I think that while we're in the web UI we should look at masking the shared secret too (so potentially another JIRA/contribution to follow? At least something I'm interested in pursuing)
    
    Also curious if you have any plans to backport this small change to 1.5.x and 1.6.x also 


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen So what should I do?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen @a-roberts So what should we do with `spark.authenticate.secret`. Do we want to mask it as well? 
    Something like this?
    ```
     // Spark Properties (lowercase). Their values will be changed to ***** in WebUI
      private val propertiesToMask = Set("spark.authenticate.secret")
    
      private def removePass(kv: (String, String)): (String, String) = {
        if (kv._1.toLowerCase.contains("password") || propertiesToMask.contains(kv._1.toLowerCase)) {
          (kv._1, "******")
        } else kv
      }
    ```


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen Different branch?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Aha I see it now. Yes I think it's fair to put in 2.0 as well. It may or may not make 2.0.2.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by n-marion <gi...@git.apache.org>.
Github user n-marion commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    A related commit https://github.com/apache/spark/pull/14484 hasn't been added to Spark 2.0 for 2.0.1 or 2.0.2


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

Posted by dongjoon-hyun <gi...@git.apache.org>.
Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14409#discussion_r72855418
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/env/EnvironmentPage.scala ---
    @@ -25,12 +25,20 @@ import org.apache.spark.ui.{UIUtils, WebUIPage}
     
     private[ui] class EnvironmentPage(parent: EnvironmentTab) extends WebUIPage("") {
       private val listener = parent.listener
    -
    +  val passwordProperties: Seq[String] = Seq("spark.ssl.keyPassword",
    --- End diff --
    
    Could we use `Set` for this?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Perhaps everything with the name "password" we should just hide it?



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by n-marion <gi...@git.apache.org>.
Github user n-marion commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Appreciate that. Thank you.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Just another PR for the same JIRA


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen I think it looks cleaner when it is not inline. 
    On Web UI this is the only place they show up. Also they won't be masked in logs.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    **[Test build #63128 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/63128/consoleFull)** for PR 14409 at commit [`e4b617c`](https://github.com/apache/spark/commit/e4b617c576868d42b57acdc0192e23b81ffc4bf4).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by ajbozarth <gi...@git.apache.org>.
Github user ajbozarth commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    All in all I think this looks good


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @Devian-ua what is your ASF JIRA handle?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Can one of the admins verify this patch?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by Devian-ua <gi...@git.apache.org>.
Github user Devian-ua commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    @srowen You mean username? It is `asukhenko`


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #14409: [SPARK-16796] [Web UI] Visible passwords on Spark...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/14409


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/63128/
    Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #14409: [SPARK-16796] [Web UI] Visible passwords on Spark enviro...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/14409
  
    Jenkins test this please


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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