Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ public async Task ReadItemAsync_WithCircuitBreakerEnabledAndSingleMasterAccountA
await this.TryCreateItems(itemsList);

//Must Ensure the data is replicated to all regions
await Task.Delay(3000);
await Task.Delay(5000);

bool isRegion1Available = true;
bool isRegion2Available = true;
Expand Down Expand Up @@ -1055,7 +1055,7 @@ public async Task ReadItemAsync_WithCircuitBreakerDisabledAndSingleMasterAccount
await this.TryCreateItems(itemsList);

//Must Ensure the data is replicated to all regions
await Task.Delay(3000);
await Task.Delay(5000);

int consecutiveFailureCount = 10;
for (int attemptCount = 1; attemptCount <= consecutiveFailureCount; attemptCount++)
Expand Down
Loading