You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/06/01 08:43:18 UTC

[zeppelin] branch branch-0.9 updated: [ZEPPELIN-4836]. set zeppelin.spark.sql.stacktrace to true as default value

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new 8e6cc4d  [ZEPPELIN-4836]. set zeppelin.spark.sql.stacktrace to true as default value
8e6cc4d is described below

commit 8e6cc4d50dbbec9f99de533948437bdd1813fe48
Author: Jeff Zhang <zj...@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 <zj...@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
    
    (cherry picked from commit 3034a44dc3b783782a476b5fd47cb11341430a3c)
    Signed-off-by: Jeff Zhang <zj...@apache.org>
---
 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"
       },