Skip to content

Commit

Permalink
Reduce sleep time in role assignment checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sebassem committed Dec 25, 2023
1 parent 47d3606 commit a74501e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pester/full.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Describe "Bicep Landing Zone (Sub) Vending Tests" {
$roleAssignment = Get-AzRoleAssignment -Scope /subscriptions/$subId | Where-Object { $_.ObjectId -eq "7eca0dca-6701-46f1-b7b6-8b424dab50b3" -and $_.RoleDefinitionName -eq "Reader"} -ErrorAction SilentlyContinue
if ($null -eq $roleAssignment) {
Write-Host "Waiting for Subscription Role Assignments to be eventually consistent... Iteration: $($iterationCount)" -ForegroundColor Yellow
Start-Sleep -Seconds 45
Start-Sleep -Seconds 40
$iterationCount++
}
} until (
Expand All @@ -88,7 +88,7 @@ Describe "Bicep Landing Zone (Sub) Vending Tests" {
$roleAssignment = Get-AzRoleAssignment -Scope "/subscriptions/resourceGroups/rsg-$location-net-hs-pr-$prNumber" | Where-Object { $_.ObjectId -eq "7eca0dca-6701-46f1-b7b6-8b424dab50b3" -and $_.RoleDefinitionName -eq "Network Contributor"} -ErrorAction SilentlyContinue
if ($null -eq $roleAssignment) {
Write-Host "Waiting for Resource Group Role Assignments to be eventually consistent... Iteration: $($iterationCount)" -ForegroundColor Yellow
Start-Sleep -Seconds 45
Start-Sleep -Seconds 40
$iterationCount++
}
} until (
Expand Down

0 comments on commit a74501e

Please sign in to comment.