Skip to content

Commit f06ad2f

Browse files
committed
Table Read Retry
1 parent e164701 commit f06ad2f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Modules/CIPPCore/Public/Get-CIPPAzDatatableEntity.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ function Get-CIPPAzDataTableEntity {
77
$First,
88
$Skip,
99
$Sort,
10-
$Count
10+
$Count,
11+
[int]$MaxRetries = 3
1112
)
1213

14+
$PSBoundParameters['MaxRetries'] = $MaxRetries
1315
$Results = Get-AzDataTableEntity @PSBoundParameters
1416
$mergedResults = @{}
1517
$rootEntities = @{} # Keyed by "$PartitionKey|$RowKey"

0 commit comments

Comments
 (0)