From e757e61b79a6dc2b6056c29364d4feb6caf19a54 Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 14 Aug 2024 21:34:05 +0200 Subject: [PATCH] config comment tweaks --- .../main/java/com/commafeed/CommaFeedConfiguration.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java b/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java index 57c5ae14..de0224a0 100644 --- a/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java +++ b/commafeed-server/src/main/java/com/commafeed/CommaFeedConfiguration.java @@ -15,7 +15,7 @@ import jakarta.validation.constraints.Positive; /** * CommaFeed configuration * - * Default values are for production, they can be overridden in application.properties + * Default values are for production, they can be overridden in application.properties for other profiles */ @ConfigMapping(prefix = "commafeed") public interface CommaFeedConfiguration { @@ -52,7 +52,7 @@ public interface CommaFeedConfiguration { Optional googleAnalyticsTrackingCode(); /** - * Google Auth key for fetching Youtube favicons. + * Google Auth key for fetching Youtube channel favicons. */ Optional googleAuthKey(); @@ -127,6 +127,8 @@ public interface CommaFeedConfiguration { interface Database { /** * Database query timeout. + * + * 0 to disable. */ @WithDefault("0") int queryTimeout(); @@ -201,7 +203,7 @@ public interface CommaFeedConfiguration { interface Websocket { /** - * Enable websocket connection so the server can notify the web client that there are new entries for your feeds. + * Enable websocket connection so the server can notify web clients that there are new entries for feeds. */ @WithDefault("true") boolean enabled();