From f035f6ee27c8f37303981530817e6d3084bee7b1 Mon Sep 17 00:00:00 2001 From: seankane-msft Date: Tue, 7 Sep 2021 17:46:12 -0400 Subject: [PATCH] updating proxy to use latest version --- eng/common/testproxy/docker-start-proxy.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/common/testproxy/docker-start-proxy.ps1 b/eng/common/testproxy/docker-start-proxy.ps1 index 4e5da37278a2..6e0d0edd2b64 100644 --- a/eng/common/testproxy/docker-start-proxy.ps1 +++ b/eng/common/testproxy/docker-start-proxy.ps1 @@ -25,7 +25,7 @@ catch { Write-Error "Please check your docker invocation and try running the script again." } -$SELECTED_IMAGE_TAG = "1037115" +$SELECTED_IMAGE_TAG = "1084681" $CONTAINER_NAME = "ambitious_azsdk_test_proxy" $LINUX_IMAGE_SOURCE = "azsdkengsys.azurecr.io/engsys/testproxy-lin:${SELECTED_IMAGE_TAG}" $WINDOWS_IMAGE_SOURCE = "azsdkengsys.azurecr.io/engsys/testproxy-win:${SELECTED_IMAGE_TAG}" @@ -42,7 +42,7 @@ $SelectedImage = $LINUX_IMAGE_SOURCE $Initial = "" # most of the time, running this script on a windows machine will work just fine, as docker defaults to linux containers -# however, in CI, windows images default to _windows_ containers. We cannot swap them. We can tell if we're in a CI build by +# however, in CI, windows images default to _windows_ containers. We cannot swap them. We can tell if we're in a CI build by # checking for the environment variable TF_BUILD. if ($IsWindows -and $env:TF_BUILD){ $SelectedImage = $WINDOWS_IMAGE_SOURCE