Merge "Fix DB archiver AttributeError due to wrong table name attribute used" into stable/queens

This commit is contained in:
Zuul 2018-09-19 16:20:36 +00:00 committed by Gerrit Code Review
commit 2b76f8a207
1 changed files with 1 additions and 1 deletions

View File

@ -6081,7 +6081,7 @@ def _archive_if_instance_deleted(table, shadow_table, instances, conn,
return result_delete.rowcount
except db_exc.DBReferenceError as ex:
LOG.warning('Failed to archive %(table)s: %(error)s',
{'table': table.__tablename__,
{'table': table.name,
'error': six.text_type(ex)})
return 0