This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 3034a44 [ZEPPELIN-4836]. set zeppelin.spark.sql.stacktrace to true as default value 3034a44 is described below commit 3034a44dc3b783782a476b5fd47cb11341430a3c Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Mon May 25 11:25:49 2020 +0800 [ZEPPELIN-4836]. set zeppelin.spark.sql.stacktrace to true as default value ### What is this PR for? Trivial PR to set `zeppelin.spark.sql.stacktrace` to `true` as default value ### What type of PR is it? [Improvement] ### Todos * [ ] - Task ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-4836 ### How should this be tested? * CI pass ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Jeff Zhang <zjf...@apache.org> Closes #3777 from zjffdu/ZEPPELIN-4836 and squashes the following commits: 547f1381f [Jeff Zhang] [ZEPPELIN-4836]. set zeppelin.spark.sql.stacktrace to true as default value --- spark/interpreter/src/main/resources/interpreter-setting.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spark/interpreter/src/main/resources/interpreter-setting.json b/spark/interpreter/src/main/resources/interpreter-setting.json index 5505f4d..d722b52 100644 --- a/spark/interpreter/src/main/resources/interpreter-setting.json +++ b/spark/interpreter/src/main/resources/interpreter-setting.json @@ -170,7 +170,7 @@ "zeppelin.spark.sql.stacktrace": { "envName": null, "propertyName": "zeppelin.spark.sql.stacktrace", - "defaultValue": false, + "defaultValue": true, "description": "Show full exception stacktrace for SQL queries if set to true.", "type": "checkbox" },