From 25f44f58e3c6bf4d3c48d4dc4acdfb78759a0421 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 8 Jun 2022 14:35:50 +0200 Subject: [PATCH] Start task also needs to skip container starting for proxy app --- src/apptask.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/apptask.js b/src/apptask.js index c2f0dccea..2bf368991 100644 --- a/src/apptask.js +++ b/src/apptask.js @@ -685,8 +685,10 @@ async function start(app, args, progressCallback) { await progressCallback({ percent: 10, message: 'Starting app services' }); await services.startAppServices(app); - await progressCallback({ percent: 35, message: 'Starting container' }); - await docker.startContainer(app.id); + if (app.manifest.id !== constants.RELAY_APPSTORE_ID) { + await progressCallback({ percent: 35, message: 'Starting container' }); + await docker.startContainer(app.id); + } await progressCallback({ percent: 60, message: 'Adding collectd profile' }); await addCollectdProfile(app);