diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 60781a4d..793363ea 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -182,4 +182,5 @@ stages: -TsaIterationPath $(_TsaIterationPath) -TsaRepositoryName "Tye" -TsaCodebaseName "Tye" - -TsaPublish $True' + -TsaPublish $True + -PoliCheckAdditionalRunConfigParams @("UserExclusionPath < $(Build.SourcesDirectory)/eng/PoliCheckExclusions.xml")' diff --git a/eng/PoliCheckExclusions.xml b/eng/PoliCheckExclusions.xml new file mode 100644 index 00000000..b5b68e0d --- /dev/null +++ b/eng/PoliCheckExclusions.xml @@ -0,0 +1,3 @@ + + LINUX_TEST_RESULTS|MACOS_TEST_RESULTS|WINDOWS_TEST_RESULTS|LINUX_TEST_LOGS|MACOS_TEST_LOGS|WINDOWS_TEST_LOGS + diff --git a/src/Tye.Hosting/DockerRunner.cs b/src/Tye.Hosting/DockerRunner.cs index 7ed19940..095dd069 100644 --- a/src/Tye.Hosting/DockerRunner.cs +++ b/src/Tye.Hosting/DockerRunner.cs @@ -162,7 +162,7 @@ namespace Tye.Hosting _logger.LogInformation("docker logs collection for {ContainerName} complete with exit code {ExitCode}", replica, result.ExitCode); - // Docker has a tendency to hang so we're going to timeout this shutdown process + // Docker has a tendency to get stuck so we're going to timeout this shutdown process var timeoutCts = new CancellationTokenSource(TimeSpan.FromSeconds(5)); _logger.LogInformation("Stopping container {ContainerName} with ID {ContainerId}", replica, shortContainerId);