From 5e4274c3089aefe68d9d6733bcb667a83abbd90e Mon Sep 17 00:00:00 2001 From: Steve Ledridge <11711392+Ledridge@users.noreply.github.com> Date: Thu, 9 Nov 2023 10:10:31 -0800 Subject: [PATCH 1/2] Update Container.cs this fixes a bug where it goes into an endless loop if there are multiple sections because strNextMarker is never passed in the while loop and it just keeps grabbing the first section. --- ITPCfSQL.Azure/Container.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ITPCfSQL.Azure/Container.cs b/ITPCfSQL.Azure/Container.cs index 5099253..878b292 100644 --- a/ITPCfSQL.Azure/Container.cs +++ b/ITPCfSQL.Azure/Container.cs @@ -56,7 +56,7 @@ public List ListBlobs( { string res = Internal.InternalMethods.ListBlobs( AzureBlobService.AccountName, AzureBlobService.SharedKey, AzureBlobService.UseHTTPS, - this.Name, prefix, + this.Name, prefix, strNextMarker IncludeSnapshots: includeSnapshots, IncludeMetadata: includeMetadata, IncludeCopy: includeCopy, From 285170de0ac376ad5aa2d0552d0cebaa1d2de29b Mon Sep 17 00:00:00 2001 From: Steve Ledridge <11711392+Ledridge@users.noreply.github.com> Date: Thu, 9 Nov 2023 10:35:37 -0800 Subject: [PATCH 2/2] Update Container.cs missed a coma --- ITPCfSQL.Azure/Container.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ITPCfSQL.Azure/Container.cs b/ITPCfSQL.Azure/Container.cs index 878b292..6eb0a90 100644 --- a/ITPCfSQL.Azure/Container.cs +++ b/ITPCfSQL.Azure/Container.cs @@ -56,7 +56,7 @@ public List ListBlobs( { string res = Internal.InternalMethods.ListBlobs( AzureBlobService.AccountName, AzureBlobService.SharedKey, AzureBlobService.UseHTTPS, - this.Name, prefix, strNextMarker + this.Name, prefix, strNextMarker, IncludeSnapshots: includeSnapshots, IncludeMetadata: includeMetadata, IncludeCopy: includeCopy,