mirror of https://github.com/zulip/zulip.git
scripts: Print names of missing migrations in compatibility check.
This will make it much easier to debug any situations where this happens.
This commit is contained in:
parent
cc5ac302ab
commit
98a05257ea
|
@ -26,6 +26,9 @@ for key, migration in loader.disk_migrations.items():
|
|||
if not missing:
|
||||
sys.exit(0)
|
||||
|
||||
for migration in missing:
|
||||
print(f"Migration {migration} missing in new version.")
|
||||
|
||||
current_version = parse_version_from(os.path.join(DEPLOYMENTS_DIR, "current"))
|
||||
logging.error(
|
||||
"This is not an upgrade -- the current deployment (version %s) "
|
||||
|
|
Loading…
Reference in New Issue