Skip to content
Snippets Groups Projects
Commit 2d76cb11 authored by Xin Ren's avatar Xin Ren Committed by Sean Owen
Browse files

[SPARK-17276][CORE][TEST] Stop env params output on Jenkins job page

https://issues.apache.org/jira/browse/SPARK-17276

## What changes were proposed in this pull request?

When trying to find error msg in a failed Jenkins build job, I'm annoyed by the huge env output.
The env parameter output should be muted.

![screen shot 2016-08-26 at 10 52 07 pm](https://cloud.githubusercontent.com/assets/3925641/18025581/b8d567ba-6be2-11e6-9eeb-6aec223f1730.png)

## How was this patch tested?

Tested manually on local laptop.

Author: Xin Ren <iamshrek@126.com>

Closes #14848 from keypointt/SPARK-17276.
parent bca79c82
No related branches found
No related tags found
No related merge requests found
...@@ -214,7 +214,7 @@ class PipedRDDSuite extends SparkFunSuite with SharedSparkContext { ...@@ -214,7 +214,7 @@ class PipedRDDSuite extends SparkFunSuite with SharedSparkContext {
} }
def testCommandAvailable(command: String): Boolean = { def testCommandAvailable(command: String): Boolean = {
val attempt = Try(Process(command).run().exitValue()) val attempt = Try(Process(command).run(ProcessLogger(_ => ())).exitValue())
attempt.isSuccess && attempt.get == 0 attempt.isSuccess && attempt.get == 0
} }
......
...@@ -19,7 +19,7 @@ package org.apache.spark.sql.hive.execution ...@@ -19,7 +19,7 @@ package org.apache.spark.sql.hive.execution
import java.sql.{Date, Timestamp} import java.sql.{Date, Timestamp}
import scala.sys.process.Process import scala.sys.process.{Process, ProcessLogger}
import scala.util.Try import scala.util.Try
import org.apache.hadoop.fs.Path import org.apache.hadoop.fs.Path
...@@ -1788,7 +1788,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton { ...@@ -1788,7 +1788,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
} }
def testCommandAvailable(command: String): Boolean = { def testCommandAvailable(command: String): Boolean = {
val attempt = Try(Process(command).run().exitValue()) val attempt = Try(Process(command).run(ProcessLogger(_ => ())).exitValue())
attempt.isSuccess && attempt.get == 0 attempt.isSuccess && attempt.get == 0
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment