Skip to content

Commit 0d712d5

Browse files
mateuszmanderatimabbott
authored andcommitted
entrypoint: Fix confusing output string about migrations.
"Migrating Zulip to new version" sounds very general and unclear about what step is actually happening - easy to even confuse with a full server upgrade being run. This should be explicit that this is about db migrations.
1 parent 0ab4061 commit 0d712d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ zulipFirstStartInit() {
366366
echo "Zulip first start init sucessful."
367367
}
368368
zulipMigration() {
369-
echo "Migrating Zulip to new version ..."
369+
echo "Running new database migrations..."
370370
set +e
371371
su zulip -c "/home/zulip/deployments/current/manage.py migrate --noinput"
372372
local RETURN_CODE=$?
@@ -377,7 +377,7 @@ zulipMigration() {
377377
set -e
378378
rm -rf "$DATA_DIR/.zulip-*"
379379
touch "$DATA_DIR/.zulip-$ZULIP_VERSION"
380-
echo "Zulip migration succeeded."
380+
echo "Database migrations completed."
381381
}
382382
runPostSetupScripts() {
383383
echo "Post setup scripts execution ..."

0 commit comments

Comments
 (0)