From 693844828bbc65d702d8930eb36f773dae55fe30 Mon Sep 17 00:00:00 2001 From: Athou Date: Sun, 15 Sep 2024 11:41:00 +0200 Subject: [PATCH] comment tweak --- commafeed-server/doc/commafeed.adoc | 2 +- .../src/main/java/com/commafeed/CommaFeedConfiguration.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commafeed-server/doc/commafeed.adoc b/commafeed-server/doc/commafeed.adoc index f576c599..f5759ae0 100644 --- a/commafeed-server/doc/commafeed.adoc +++ b/commafeed-server/doc/commafeed.adoc @@ -258,7 +258,7 @@ a| [[commafeed-server_commafeed-http-client-cache-enabled]] [.property-path]##`c [.description] -- -Whether to enable the cache. This cache is used to avoid spamming feeds too often (e.g. when subscribing to a feed for the first time or when clicking "fetch all my feeds now"). +Whether to enable the cache. This cache is used to avoid spamming feeds in short bursts (e.g. when subscribing to a feed for the first time or when clicking "fetch all my feeds now"). ifdef::add-copy-button-to-env-var[] diff --git a/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java b/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java index b0fed899..20a49e9e 100644 --- a/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java +++ b/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java @@ -147,8 +147,8 @@ public interface CommaFeedConfiguration { interface HttpClientCache { /** - * Whether to enable the cache. This cache is used to avoid spamming feeds too often (e.g. when subscribing to a feed for the first - * time or when clicking "fetch all my feeds now"). + * Whether to enable the cache. This cache is used to avoid spamming feeds in short bursts (e.g. when subscribing to a feed for the + * first time or when clicking "fetch all my feeds now"). */ @WithDefault("true") boolean enabled();