completed the UI and docker-compose.yaml basic app

This commit is contained in:
Volodymyr Smirnov
2020-10-27 19:26:16 +02:00
parent 61224d5cb5
commit 931db11b6e
30 changed files with 391 additions and 278 deletions

View File

@@ -80,11 +80,13 @@ namespace MalwareMultiScan.Scanner.Services
_logger.LogError(
exception, "Scanning failed with exception");
}
finally
{
await _bus.SendAsync(
_configuration.GetValue<string>("ResultsSubscriptionId"), result);
}
_logger.LogInformation(
$"Sending scan results with status {result.Succeeded}");
await _bus.SendAsync(
_configuration.GetValue<string>("ResultsSubscriptionId"), result);
}
}
}