Updated from global requirements
In newer versions of oslo.db, a sanity check is run to verify table's collations and ensure they're utf8. In order to un-block the gate, we need to land this patch, which is broken by this sanity check. I've disabled the sanity_check in this patch to help moving it forward and I've filed an issue on LP (#1453047) to track the explicit switch to utf-8. I preferred not to do the switch in this patch because it deserves its own commit so we can track it properly (and revert if needed). Partially-Fixes: #1453047 Change-Id: Ifffbdd50c38a1d25215faa6a966c2d2a63935711
This commit is contained in:
committed by
Flavio Percoco
parent
bcc7721550
commit
9b8e2867d9
@@ -62,4 +62,5 @@ def db_sync(version=None, init_version=0, engine=None):
|
||||
return get_backend().db_sync(engine=engine,
|
||||
abs_path=MIGRATE_REPO_PATH,
|
||||
version=version,
|
||||
init_version=init_version)
|
||||
init_version=init_version,
|
||||
sanity_check=False)
|
||||
|
||||
Reference in New Issue
Block a user