aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2015-07-09 13:28:17 +0900
committerKousuke Saruta <sarutak@oss.nttdata.co.jp>2015-07-09 13:28:17 +0900
commitaba5784dab24c03ddad89f7a1b5d3d0dc8d109be (patch)
treef780ecdf0cec52c52261cefa00afd68b73a45a80 /pom.xml
parent47ef423f860c3109d50c7e321616b267f4296e34 (diff)
downloadspark-aba5784dab24c03ddad89f7a1b5d3d0dc8d109be.tar.gz
spark-aba5784dab24c03ddad89f7a1b5d3d0dc8d109be.tar.bz2
spark-aba5784dab24c03ddad89f7a1b5d3d0dc8d109be.zip
[SPARK-8937] [TEST] A setting `spark.unsafe.exceptionOnMemoryLeak ` is missing in ScalaTest config.
`spark.unsafe.exceptionOnMemoryLeak` is present in the config of surefire. ``` <!-- Surefire runs all Java tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <!-- Note config is repeated in scalatest config --> ... <spark.unsafe.exceptionOnMemoryLeak>true</spark.unsafe.exceptionOnMemoryLeak> </systemProperties> ... ``` but is absent in the config ScalaTest. Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #7308 from sarutak/add-setting-for-memory-leak and squashes the following commits: 95644e7 [Kousuke Saruta] Added a setting for memory leak
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 9cf2471b51..529e47f8b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1339,6 +1339,7 @@
<spark.ui.enabled>false</spark.ui.enabled>
<spark.ui.showConsoleProgress>false</spark.ui.showConsoleProgress>
<spark.driver.allowMultipleContexts>true</spark.driver.allowMultipleContexts>
+ <spark.unsafe.exceptionOnMemoryLeak>true</spark.unsafe.exceptionOnMemoryLeak>
</systemProperties>
</configuration>
<executions>