You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Josh Rosen (JIRA)" <ji...@apache.org> on 2014/12/24 04:16:13 UTC

[jira] [Resolved] (SPARK-4881) Use SparkConf#getBoolean instead of get().toBoolean

     [ https://issues.apache.org/jira/browse/SPARK-4881?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Josh Rosen resolved SPARK-4881.
-------------------------------
       Resolution: Fixed
    Fix Version/s: 1.3.0

Issue resolved by pull request 3733
[https://github.com/apache/spark/pull/3733]

> Use SparkConf#getBoolean instead of get().toBoolean
> ---------------------------------------------------
>
>                 Key: SPARK-4881
>                 URL: https://issues.apache.org/jira/browse/SPARK-4881
>             Project: Spark
>          Issue Type: Improvement
>          Components: YARN
>    Affects Versions: 1.3.0
>            Reporter: Kousuke Saruta
>            Priority: Trivial
>             Fix For: 1.3.0
>
>
> It's really a minor issue.
> In ApplicationMaster, there is code like as follows.
> {code}
>       val preserveFiles = sparkConf.get("spark.yarn.preserve.staging.files", "false").toBoolean
> {code}
> I think, the code can be simplified like as follows.
> {code}
>       val preserveFiles = sparkConf.getBoolean("spark.yarn.preserve.staging.files", false)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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