clean up downloads on shards

This commit is contained in:
rootdarkarchon
2023-12-07 17:28:22 +01:00
committed by Loporrit
parent 9eec562fdd
commit 566634776b
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();