jedcunningham commented on code in PR #44291:
URL: https://github.com/apache/airflow/pull/44291#discussion_r1854722370


##########
airflow/utils/db_cleanup.py:
##########
@@ -53,6 +53,10 @@
 logger = logging.getLogger(__name__)
 
 ARCHIVE_TABLE_PREFIX = "_airflow_deleted__"
+# Archived tables created by the DB migrations
+ARCHIVED_TABLES_FROM_DB_MIGRATIONS = [
+    "_xcom_archive"  # Table created by the migration AF 2 -> 3.0.0 when the 
XComs had pickled values

Review Comment:
   ```suggestion
   # Archived tables created by DB migrations
   ARCHIVED_TABLES_FROM_DB_MIGRATIONS = [
       "_xcom_archive"  # Table created by the AF 2 -> 3.0.0 migration when the 
XComs had pickled values
   ```
   
   nit



-- 
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]

Reply via email to