niemyjski on mappings-refactor
Revert to 2201-pre (compare)
niemyjski on mappings-refactor
Updated dependencies. (compare)
ejsmith on mappings-refactor
Change a bunch of index field s… (compare)
ejsmith on elastic7
More k8s changes (compare)
niemyjski on elastic7
Revert "Updated format." This … (compare)
private ICollection<IMigration> GetAllMigrations() {
var migrationTypes = TypeHelper.GetDerivedTypes<IMigration>(new[] { typeof(IMigration).Assembly });
return migrationTypes
.Select(migrationType => (IMigration)_container.GetService(migrationType))
.OrderBy(m => m.Version)
.ToList();
}
.Subscribe(item => { ProcessAsync(item).GetAwaiter().Result(); })
Task.Wait()
and Task.Result
vs Task.GetAwaiter().Result()