From 1d96542a2ac430d75e3d6177d3f503775e13577d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 26 Nov 2021 12:19:24 +0900 Subject: [PATCH] Fix incorrect `ConfigureAwait` specification causing stalled test This only occurs on upcoming changes I have (occurred when switching existing skin import tests across to realm). Unsure why it was set to `true`, seems like a weird oversight. --- osu.Game/Stores/RealmArchiveModelImporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Stores/RealmArchiveModelImporter.cs b/osu.Game/Stores/RealmArchiveModelImporter.cs index 6370d4ebe4..b74670e722 100644 --- a/osu.Game/Stores/RealmArchiveModelImporter.cs +++ b/osu.Game/Stores/RealmArchiveModelImporter.cs @@ -253,7 +253,7 @@ namespace osu.Game.Stores var scheduledImport = Task.Factory.StartNew(async () => await Import(model, archive, lowPriority, cancellationToken).ConfigureAwait(false), cancellationToken, TaskCreationOptions.HideScheduler, lowPriority ? import_scheduler_low_priority : import_scheduler).Unwrap(); - return await scheduledImport.ConfigureAwait(true); + return await scheduledImport.ConfigureAwait(false); } ///