audit notes work completed, test fixes work (95% done), new sprints, new data sources setup and configuration

This commit is contained in:
master
2026-01-14 10:48:00 +02:00
parent d7be6ba34b
commit 95d5898650
379 changed files with 40695 additions and 19041 deletions

View File

@@ -47,7 +47,7 @@ public sealed class NativeBinaryDiscovery
if (!Directory.Exists(rootPath))
{
_logger.LogWarning("Root path does not exist: {RootPath}", rootPath);
return Array.Empty<DiscoveredBinary>();
return Task.FromResult<IReadOnlyList<DiscoveredBinary>>(Array.Empty<DiscoveredBinary>());
}
var discovered = new List<DiscoveredBinary>();