clean up downloads on shards

This commit is contained in:
rootdarkarchon
2023-12-07 17:28:22 +01:00
parent 5a4010cb8a
commit 3ed4ef454c
2 changed files with 44 additions and 9 deletions

View File

@@ -47,7 +47,7 @@ public class RequestController : ControllerBase
foreach (var file in files)
{
_logger.LogDebug("Prerequested file: " + file);
_cachedFileProvider.DownloadFileWhenRequired(file);
await _cachedFileProvider.DownloadFileWhenRequired(file).ConfigureAwait(false);
}
Guid g = Guid.NewGuid();