You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by el...@apache.org on 2023/07/22 00:37:51 UTC

[superset] branch 2.1 updated: test

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

elizabeth pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 715e96252d test
715e96252d is described below

commit 715e96252dd1c9f119335265fc1c2d8b4cd392b4
Author: Elizabeth Thompson <es...@gmail.com>
AuthorDate: Fri Jul 21 17:37:37 2023 -0700

    test
---
 RELEASING/test_run_tarball.sh       | 1 +
 superset/initialization/__init__.py | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/RELEASING/test_run_tarball.sh b/RELEASING/test_run_tarball.sh
index d4c8a9c706..238cefc72d 100755
--- a/RELEASING/test_run_tarball.sh
+++ b/RELEASING/test_run_tarball.sh
@@ -51,6 +51,7 @@ fi
 echo "---------------------------------------------------"
 echo "After docker build and run, you should be able to access localhost:5001 on your browser"
 echo "login using admin/admin"
+echo ${SUPERSET_TESTENV}
 echo "---------------------------------------------------"
 if ! docker run -p 5001:8088 apache-superset:${SUPERSET_VERSION_RC}; then
   echo "---------------------------------------------------"
diff --git a/superset/initialization/__init__.py b/superset/initialization/__init__.py
index ef332e502d..54e674aad4 100644
--- a/superset/initialization/__init__.py
+++ b/superset/initialization/__init__.py
@@ -445,7 +445,7 @@ class SupersetAppInitializer:  # pylint: disable=too-many-public-methods
             bottom_banner = 80 * "-" + "\n" + 80 * "-"
             logger.warning(top_banner)
             logger.warning(
-                "A Default SECRET_KEY was detected, please use superset_config.py "
+                "A Defaulsdfsdfsdfsdft SECRET_KEY was detected, please use superset_config.py "
                 "to override it.\n"
                 "Use a strong complex alphanumeric string and use a tool to help"
                 " you generate \n"
@@ -454,6 +454,7 @@ class SupersetAppInitializer:  # pylint: disable=too-many-public-methods
             logger.warning(bottom_banner)
 
         if self.config["SECRET_KEY"] == CHANGE_ME_SECRET_KEY:
+            logger.warning("IS TEST", is_test())
             if (
                 self.superset_app.debug
                 or self.superset_app.config["TESTING"]