This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new d6b2e86155 fix: Set correct amount of steps to avoid confusing logs
while loading examples (#30606)
d6b2e86155 is described below
commit d6b2e86155184e6abe26a4c39d6841ed6130627b
Author: Yerkebulan <[email protected]>
AuthorDate: Tue Oct 15 23:55:12 2024 +0600
fix: Set correct amount of steps to avoid confusing logs while loading
examples (#30606)
---
docker/docker-init.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/docker/docker-init.sh b/docker/docker-init.sh
index 397bb7d986..4016fd898a 100755
--- a/docker/docker-init.sh
+++ b/docker/docker-init.sh
@@ -22,7 +22,11 @@ set -e
#
/app/docker/docker-bootstrap.sh
-STEP_CNT=4
+if [ "$SUPERSET_LOAD_EXAMPLES" = "yes" ]; then
+ STEP_CNT=4
+else
+ STEP_CNT=3
+fi
echo_step() {
cat <<EOF