aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorSandeep Singh <sandeep@techaddict.me>2016-05-19 10:44:26 +0100
committerSean Owen <sowen@cloudera.com>2016-05-19 10:44:26 +0100
commit3facca5152e685d9c7da96bff5102169740a4a06 (patch)
tree25978904469d087254f3262c660e9a2d77a2678e /core/src
parent5907ebfc11aac8029cfc6d5f8e91cd5f53af54fe (diff)
downloadspark-3facca5152e685d9c7da96bff5102169740a4a06.tar.gz
spark-3facca5152e685d9c7da96bff5102169740a4a06.tar.bz2
spark-3facca5152e685d9c7da96bff5102169740a4a06.zip
[CORE][MINOR] Remove redundant set master in OutputCommitCoordinatorIntegrationSuite
## What changes were proposed in this pull request? Remove redundant set master in OutputCommitCoordinatorIntegrationSuite, as we are already setting it in SparkContext below on line 43. ## How was this patch tested? existing tests Author: Sandeep Singh <sandeep@techaddict.me> Closes #13168 from techaddict/minor-1.
Diffstat (limited to 'core/src')
-rw-r--r--core/src/test/scala/org/apache/spark/scheduler/OutputCommitCoordinatorIntegrationSuite.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/scheduler/OutputCommitCoordinatorIntegrationSuite.scala b/core/src/test/scala/org/apache/spark/scheduler/OutputCommitCoordinatorIntegrationSuite.scala
index 601f1c378c..32cdf16dd3 100644
--- a/core/src/test/scala/org/apache/spark/scheduler/OutputCommitCoordinatorIntegrationSuite.scala
+++ b/core/src/test/scala/org/apache/spark/scheduler/OutputCommitCoordinatorIntegrationSuite.scala
@@ -37,7 +37,6 @@ class OutputCommitCoordinatorIntegrationSuite
override def beforeAll(): Unit = {
super.beforeAll()
val conf = new SparkConf()
- .set("master", "local[2,4]")
.set("spark.hadoop.outputCommitCoordination.enabled", "true")
.set("spark.hadoop.mapred.output.committer.class",
classOf[ThrowExceptionOnFirstAttemptOutputCommitter].getCanonicalName)