jedcunningham commented on code in PR #43516:
URL: https://github.com/apache/airflow/pull/43516#discussion_r1823039359
##########
airflow/utils/db_manager.py:
##########
@@ -123,6 +126,7 @@ def upgradedb(self, to_revision=None, from_revision=None,
show_sql_only=False):
config = self.get_alembic_config()
command.upgrade(config, revision=to_revision or "heads",
sql=show_sql_only)
+ self.log.info("Upgraded the %s database", self.__class__.__name__)
Review Comment:
```suggestion
self.log.info("Migrated the %s database", self.__class__.__name__)
```
##########
airflow/utils/db.py:
##########
@@ -1169,7 +1171,7 @@ def upgradedb(
previous_revision = _get_current_revision(session=session)
- log.info("Creating tables")
+ log.info("Upgrading the Airflow database")
Review Comment:
```suggestion
log.info("Migrating the Airflow database")
```
Should we use migrating instead of upgrading?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]