Skip to content

Commit 8677d35

Browse files
authored
suppressed the error as it is non-prod code (#5065)
1 parent b77c4a6 commit 8677d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/Importer/Importer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ private static BlobContainerClient GetContainer(string connectionString, string
420420
}
421421
else
422422
{
423-
var defaultAzureCredential = new DefaultAzureCredential();
423+
var defaultAzureCredential = new DefaultAzureCredential(); // CodeQL [SM05137] This is non-production testing code which is not deployed to production environments.
424424
blobServiceClient = new BlobServiceClient(new Uri($"https://{storageAccountName}.blob.core.windows.net"), defaultAzureCredential);
425425
}
426426

0 commit comments

Comments
 (0)