Skip to content

Commit 04ea34b

Browse files
authored
Fixing testcase failure due to Spark version upgrade (#114)
* Support Spark 3.3 and EMR 6.10 * Fixing test_scala_spark_multinode testcase failure with Spark-3.3
1 parent 8dcea41 commit 04ea34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/resources/code/scala/hello-scala-spark/src/main/scala/com/amazonaws/sagemaker/spark/test/HelloScalaSparkApp.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object HelloScalaSparkApp {
3737
println("Got a Spark session with version: " + spark.version)
3838

3939
spark.sparkContext.parallelize(Seq("Hello", "Hola", "Bonjour")).foreach { case greeting: String =>
40-
System.err.println(s"I'm an executor, $greeting!")
40+
println("I'm an executor, " + greeting)
4141
}
4242

4343
// Load test data set

0 commit comments

Comments
 (0)