From c3509b78cf075a440436100e2d52c5c36425d8ea Mon Sep 17 00:00:00 2001 From: Zhang Zongyu Date: Fri, 27 Aug 2021 14:19:14 +0800 Subject: [PATCH] services/filestore: should be aware of LISTEN_ADDRESS Signed-off-by: Zhang Zongyu --- services/filestore/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/filestore/app.js b/services/filestore/app.js index 11ece01180..681529558b 100644 --- a/services/filestore/app.js +++ b/services/filestore/app.js @@ -136,7 +136,7 @@ app.get('/health_check', healthCheckController.check) app.use(RequestLogger.errorHandler) const port = settings.internal.filestore.port || 3009 -const host = '0.0.0.0' +const host = settings.internal.filestore.host || '0.0.0.0' if (!module.parent) { // Called directly