diff --git a/Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs b/Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs index 57b7cbf57a..b4f59d25f0 100644 --- a/Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs +++ b/Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs @@ -14,13 +14,13 @@ public class CosmosThresholdOptions /// /// Latency Threshold for non point operations i.e. Query /// - /// 500 ms + /// 3 seconds public TimeSpan NonPointOperationLatencyThreshold { get; set; } = TimeSpan.FromSeconds(3); /// /// Latency Threshold for point operations i.e operation other than Query /// - /// 100 ms + /// 1 second public TimeSpan PointOperationLatencyThreshold { get; set; } = TimeSpan.FromSeconds(1); } }