From 6d30dc8ddf0dda6fc4de6c5c637c517ef1fb3d2e Mon Sep 17 00:00:00 2001 From: Blair L Murri Date: Fri, 7 Mar 2025 17:02:12 -0800 Subject: [PATCH] Deployer: Always honor image build requests --- src/deploy-tes-on-azure/Deployer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deploy-tes-on-azure/Deployer.cs b/src/deploy-tes-on-azure/Deployer.cs index cc608b35f..6ece675af 100644 --- a/src/deploy-tes-on-azure/Deployer.cs +++ b/src/deploy-tes-on-azure/Deployer.cs @@ -1329,7 +1329,7 @@ private async Task BuildPushAcrAsync(Dictionary settings, string } else { - canReturnEarly = sameVersionUpgrade && !tesUpgraded && !string.IsNullOrEmpty(settings["ActualTesImageName"]); + canReturnEarly = !acrRequested && sameVersionUpgrade && !tesUpgraded && !string.IsNullOrEmpty(settings["ActualTesImageName"]); } if (canReturnEarly)