Skip to content

Commit

Permalink
confluence-collator: make parallelismLimit optional (#1820)
Browse files Browse the repository at this point in the history
Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com>
Signed-off-by: Fortune-Ndlovu <fndlovu@redhat.com>
  • Loading branch information
mtlewis authored and Fortune-Ndlovu committed Nov 8, 2024
1 parent a4e6ff8 commit d89bfc2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions workspaces/confluence/.changeset/nervous-worms-fold.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@backstage-community/plugin-search-backend-module-confluence-collator': patch
---

Make `parallelismLimit` configuration field optional.

This field is already treated as optional in the package code, and the default
value is already mentioned in the description. As such we can safely mark it as
optional and treat configuration which omits it as valid.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ export interface Config {
*
* Defaults to `15`.
*/
parallelismLimit: number;
parallelismLimit?: number;
};
}

0 comments on commit d89bfc2

Please sign in to comment.