We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3839df commit 547fa49Copy full SHA for 547fa49
1 file changed
Microsoft.Azure.Cosmos/tests/Microsoft.Azure.Cosmos.EmulatorTests/CosmosItemIntegrationTests.cs
@@ -2246,8 +2246,12 @@ public async Task ClinetOverrides0msRequestTimeoutValueForPPAF()
2246
Database database = cosmosClient.GetDatabase(MultiRegionSetupHelpers.dbName);
2247
Container container = database.GetContainer(MultiRegionSetupHelpers.containerName);
2248
2249
- //request to start document client initiation
2250
- _ = await container.ReadItemAsync<CosmosIntegrationTestObject>("id", new PartitionKey("pk1"));
+ try
+ {
2251
+ //request to start document client initiation
2252
+ _ = await container.ReadItemAsync<CosmosIntegrationTestObject>("id", new PartitionKey("pk1"));
2253
+ }
2254
+ catch { }
2255
2256
// Act and Assert.
2257
0 commit comments