Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Using conf.getBoolean for the config
  • Loading branch information
akshatb1 committed Apr 20, 2020
commit 34c7d26d7d69734bd334518bc36147763ee77f14
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/deploy/Client.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private class ClientEndpoint(

private val lostMasters = new HashSet[RpcAddress]
private var activeMasterEndpoint: RpcEndpointRef = null
private val waitAppCompletion = conf.get("spark.submit.waitAppCompletion", "false") == "true"
private val waitAppCompletion = conf.getBoolean("spark.submit.waitAppCompletion", false)
private val REPORT_DRIVER_STATUS_INTERVAL = 1000


Expand Down