Fix creating new Review Board databases via rb-site.
Review Request #12444 — Created July 8, 2022 and submitted — Latest diff uploaded
When creating a new site and a new database, we run through the
pre/post-upgrade steps in order to ensure that we have all the state set
the way we need it. These attempted to handle the case where a table
didn't yet exist, but the exception it was using was too specific. Some
database backends may raise anOperationalErrorin this case, while
others may raise aProgrammingError.We now catch the top-level exception,
DatabaseError, in order to
handle this case for all databases.We also handle unexpected errors raised from the pre/post-upgrade
functions. If any errors are raised in the pre step, we will immediately
fail the install/upgrade, along with showing a useful error. If any
errors are raised in the post step, we will continue on, but log a
similar error.
Tested creating a new production database on MySQL, where the error
was initially hit. Saw the log information and the traceback.Tested that the fix to using
DatabaseErrorlet the install proceed.Simulated a failure in the post steps, and saw the logged error there.