backend-common: fix config schema using address rather than host

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-01-25 20:40:43 +01:00
parent 5cd8efd576
commit de9d7eba63
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-common': patch
---
Fixed configuration schema incorrectly declaring `backend.listen.address` to exist, rather than `backend.listen.host`, which is the correct key.
+1 -1
View File
@@ -41,7 +41,7 @@ export interface Config {
| string
| {
/** Address of the interface that the backend should bind to. */
address?: string;
host?: string;
/** Port that the backend should listen to. */
port?: string | number;
};