diff --git a/core/src/actions.ts b/core/src/actions.ts index 40bbd30ae7..a28ef55eeb 100644 --- a/core/src/actions.ts +++ b/core/src/actions.ts @@ -878,7 +878,7 @@ export class ActionRouter implements TypeGuard { const providers = await this.garden.resolveProviders(log) await Bluebird.each(Object.values(providers), async (provider) => { await this.cleanupEnvironment({ pluginName: provider.name, log: envLog }) - environmentStatuses[provider.name] = await this.getEnvironmentStatus({ pluginName: provider.name, log: envLog }) + environmentStatuses[provider.name] = { ready: false, outputs: {} } }) envLog.setSuccess()