From f382b8f1f5cdf92ce590a7acddfb0311af557df2 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 9 Jun 2022 15:04:09 +0200 Subject: [PATCH] Set real upstreamUri for healthcheck --- src/apphealthmonitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apphealthmonitor.js b/src/apphealthmonitor.js index 7ccb7cacf..1c3bec6c2 100644 --- a/src/apphealthmonitor.js +++ b/src/apphealthmonitor.js @@ -72,7 +72,7 @@ async function checkAppHealth(app, options) { let healthCheckUrl, host; if (app.manifest.id === constants.PROXY_APP_APPSTORE_ID) { - healthCheckUrl = 'http://example.com'; + healthCheckUrl = app.upstreamUri; host = ''; } else { const [error, data] = await safe(docker.inspect(app.containerId));