From 52995c9c30623e7baffe16217b2a97869725de9a Mon Sep 17 00:00:00 2001 From: Joshua Genders Date: Thu, 7 Nov 2024 13:15:28 +1000 Subject: [PATCH] chore: fix documentation for catalog backend stitching Signed-off-by: Josh Genders --- docs/features/software-catalog/configuration.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/features/software-catalog/configuration.md b/docs/features/software-catalog/configuration.md index 2d86811b14..6ed5a1d4b6 100644 --- a/docs/features/software-catalog/configuration.md +++ b/docs/features/software-catalog/configuration.md @@ -204,7 +204,8 @@ It can be configured with the `stitchingStrategy` app-config parameter. ```yaml title="app-config.yaml" catalog: - stitchingStrategy: immediate + stitchingStrategy: + mode: immediate ``` For the `deferred` mode you can set up additional parameters to further tune the process, @@ -217,9 +218,10 @@ These parameters accept a duration object, similar to the `processingInterval` p ```yaml title="app-config.yaml" catalog: - stitchingStrategy: deferred - pollingInterval: { seconds: 1 } - stitchTimeout: { minutes: 1 }; + stitchingStrategy: + mode: deferred + pollingInterval: { seconds: 1 } + stitchTimeout: { minutes: 1 }; ``` ## Subscribing to Catalog Errors