mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-05 23:20:40 +00:00
fix: Fix typo ("MongDB")
An user-facing echo_info message in the upgrade commands rendered MongoDB as "MongDB". Trivial fix.
This commit is contained in:
parent
5aa1d53167
commit
baf7d03cf8
@ -30,7 +30,7 @@ def upgrade_from(context: Context, from_release: str) -> None:
|
||||
def upgrade_from_ironwood(config: Config) -> None:
|
||||
if not config["RUN_MONGODB"]:
|
||||
fmt.echo_info(
|
||||
"You are not running MongDB (RUN_MONGODB=false). It is your "
|
||||
"You are not running MongoDB (RUN_MONGODB=false). It is your "
|
||||
"responsibility to upgrade your MongoDb instance to v3.6. There is "
|
||||
"nothing left to do to upgrade from Ironwood."
|
||||
)
|
||||
@ -77,7 +77,7 @@ your MySQL database from v5.6 to v5.7. You should run something similar to:
|
||||
def upgrade_from_koa(config: Config) -> None:
|
||||
if not config["RUN_MONGODB"]:
|
||||
fmt.echo_info(
|
||||
"You are not running MongDB (RUN_MONGODB=false). It is your "
|
||||
"You are not running MongoDB (RUN_MONGODB=false). It is your "
|
||||
"responsibility to upgrade your MongoDb instance to v4.0. There is "
|
||||
"nothing left to do to upgrade to Lilac from Koa."
|
||||
)
|
||||
|
@ -40,7 +40,7 @@ def upgrade_from_ironwood(context: click.Context, config: Config) -> None:
|
||||
|
||||
if not config["RUN_MONGODB"]:
|
||||
fmt.echo_info(
|
||||
"You are not running MongDB (RUN_MONGODB=false). It is your "
|
||||
"You are not running MongoDB (RUN_MONGODB=false). It is your "
|
||||
"responsibility to upgrade your MongoDb instance to v3.6. There is "
|
||||
"nothing left to do to upgrade from Ironwood to Juniper."
|
||||
)
|
||||
@ -86,7 +86,7 @@ def upgrade_from_koa(context: click.Context, config: Config) -> None:
|
||||
click.echo(fmt.title("Upgrading from Koa"))
|
||||
if not config["RUN_MONGODB"]:
|
||||
fmt.echo_info(
|
||||
"You are not running MongDB (RUN_MONGODB=false). It is your "
|
||||
"You are not running MongoDB (RUN_MONGODB=false). It is your "
|
||||
"responsibility to upgrade your MongoDb instance to v4.0. There is "
|
||||
"nothing left to do to upgrade from Koa to Lilac."
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user