-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
confluence-collator: make parallelismLimit optional (#1820)
Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com> Signed-off-by: Fortune-Ndlovu <fndlovu@redhat.com>
- Loading branch information
1 parent
a4e6ff8
commit d89bfc2
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,6 @@ export interface Config { | |
* | ||
* Defaults to `15`. | ||
*/ | ||
parallelismLimit: number; | ||
parallelismLimit?: number; | ||
}; | ||
} |