From 7fb7a122c4a44a1eee7542dc4c59f2196be1328e Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Mon, 2 May 2016 09:54:10 -0700 Subject: [PATCH] Fixing semaphore locking during build finalization --- scripts/dotnet-cli-build/PublishTargets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dotnet-cli-build/PublishTargets.cs b/scripts/dotnet-cli-build/PublishTargets.cs index 5d3f74bc4..ffa19feb9 100644 --- a/scripts/dotnet-cli-build/PublishTargets.cs +++ b/scripts/dotnet-cli-build/PublishTargets.cs @@ -107,7 +107,7 @@ namespace Microsoft.DotNet.Cli.Build } finally { - AzurePublisherTool.ReleaseLeaseOnBlob(targetContainer, leaseId); + AzurePublisherTool.ReleaseLeaseOnBlob(semaphoreBlob, leaseId); } }