Changes between Initial Version and Version 2 of Ticket #25647


Ignore:
Timestamp:
Oct 30, 2015, 6:25:51 PM (9 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25647

    • Property Version 1.81.9b1
  • Ticket #25647 – Description

    initial v2  
    33When running the tests, migrations randomly fail to run. This is because `get_unique_databases` stores all the aliases for a specific database in a set, and then `setup_databases` migrates on the 'first' one, despite sets not having a 'first' element. This randomly, based on hash randomization in python, picks either 'default' or 'logging' to be migrated. When 'logging' is migrated, all the migrations are no-ops because migrating is turned off for 'logging'.
    44
    5 I believe this is a regression introduced in 49eee8424.
     5I believe this is a regression introduced in [49eee8424].
Back to Top