Merge pull request #9167 from backstage/rugvip/host

backend-common: fix config schema using address rather than host
This commit is contained in:
Ben Lambert
2022-01-27 09:54:31 +01:00
committed by GitHub
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;
};