Skip to content

Commit

Permalink
Fixed issue in queue samples (#14178)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcc-msft authored Aug 12, 2020
1 parent 7dc0215 commit ad01bac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ public static async Task ReceiveAndUpdateAsync(string connectionString, string q
public static void IdentityAuth()
{
// Create a QueueClient that will authenticate through Active Directory
Uri accountUri = new Uri("https://MYSTORAGEACCOUNT.blob.core.windows.net/");
QueueClient queue = new QueueClient(accountUri, new DefaultAzureCredential());
Uri queueUri = new Uri("https://MYSTORAGEACCOUNT.blob.core.windows.net/QUEUENAME");
QueueClient queue = new QueueClient(queueUri, new DefaultAzureCredential());
}

/// <summary>
Expand Down

0 comments on commit ad01bac

Please sign in to comment.