diff --git a/docs/community/resources.md b/docs/community/resources.md index 633938de44d..7c4cdd9b584 100644 --- a/docs/community/resources.md +++ b/docs/community/resources.md @@ -29,6 +29,7 @@ This includes Blogs, podcasts, courses, e-books, architecture samples and videos - [Exploring the Polly.Contrib.WaitAndRetry helpers](https://hyr.mn/Polly-wait-and-retry/) - by [Ben Hyrman](https://twitter.com/hyrmn), who also wrote most of the Polly.Contrib.WaitAndRetry documentation. - [Retries - An interactive study of common retry methods](https://encore.dev/blog/retries) - by [Sam Rose](https://twitter.com/samwhoo) - [Building resilient cloud services with .NET 8](https://devblogs.microsoft.com/dotnet/building-resilient-cloud-services-with-dotnet-8/) by [Martin Tomka](https://github.com/martintmk) +- [Resilience and chaos engineering](https://devblogs.microsoft.com/dotnet/resilience-and-chaos-engineering/) by [Martin Tomka](https://github.com/martintmk) ## Podcasts diff --git a/src/Polly.Core/Timeout/TimeoutStrategyOptions.cs b/src/Polly.Core/Timeout/TimeoutStrategyOptions.cs index 5a8c8386d62..58a179a4d83 100644 --- a/src/Polly.Core/Timeout/TimeoutStrategyOptions.cs +++ b/src/Polly.Core/Timeout/TimeoutStrategyOptions.cs @@ -17,7 +17,7 @@ public class TimeoutStrategyOptions : ResilienceStrategyOptions /// Gets or sets the default timeout. /// /// - /// This value must be greater than 1 second and less than 24 hours. The default value is 30 seconds. + /// This value must be greater than 10 milliseconds and less than 24 hours. The default value is 30 seconds. /// [Range(typeof(TimeSpan), "00:00:00.010", "1.00:00:00")] [UnconditionalSuppressMessage("Trimming", "IL2026", Justification = "Addressed with DynamicDependency on ValidationHelper.Validate method")]