From ac618fb114e70349df043904f454b70dac7a52d3 Mon Sep 17 00:00:00 2001 From: Semernitskaya Date: Tue, 19 Sep 2023 09:55:47 +0300 Subject: [PATCH] Update riptide-failsafe/README.md Co-authored-by: Christoph Berg --- riptide-failsafe/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/riptide-failsafe/README.md b/riptide-failsafe/README.md index caecaaf69..f4cabbce4 100644 --- a/riptide-failsafe/README.md +++ b/riptide-failsafe/README.md @@ -130,8 +130,9 @@ Http.builder().requestFactory(new HttpComponentsClientHttpRequestFactory()) .withExecutor(Executors.newFixedThreadPool(2))) .build(); ``` -If no executor is specified - default executor configured by `Failsafe` will be used, see [Failsafe DelegatingScheduler class](https://github.com/failsafe-lib/failsafe/blob/master/core/src/main/java/dev/failsafe/internal/util/DelegatingScheduler.java#L111), -see also [Failsafe documentation](https://failsafe.dev/async-execution/#executorservice-configuration) for more information. +```suggestion +If no executor is specified, the default executor configured by `Failsafe` is used. See [Failsafe DelegatingScheduler class](https://github.com/failsafe-lib/failsafe/blob/master/core/src/main/java/dev/failsafe/internal/util/DelegatingScheduler.java#L111), +and also [Failsafe documentation](https://failsafe.dev/async-execution/#executorservice-configuration) for more information. ## Usage