Closed ironsmile closed 6 years ago
Concurrent usage of the MemoryMigrationSource was impossible because it was mutating its Migrations property in place. This commit makes this possible by making sure the FindMigrations sorts a copy of the migrations list instead of the shared one.
MemoryMigrationSource
Migrations
FindMigrations
Good catch, thanks!
Concurrent usage of the
MemoryMigrationSource
was impossible because it was mutating itsMigrations
property in place. This commit makes this possible by making sure theFindMigrations
sorts a copy of the migrations list instead of the shared one.