Set real upstreamUri for healthcheck

This commit is contained in:
Johannes Zellner
2022-06-09 15:04:09 +02:00
parent fbc7fcf04b
commit f382b8f1f5
+1 -1
View File
@@ -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));