AAE-25417 Update status to Deployed (#10353)

This commit is contained in:
Amedeo Lepore 2024-10-30 14:55:06 +01:00 committed by GitHub
parent 4e232eea6e
commit c93823a16b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -658,7 +658,7 @@ function findFailingApps(deployedApps: any[]): any[] {
Object.keys(ACTIVITI_CLOUD_APPS).forEach((key) => { Object.keys(ACTIVITI_CLOUD_APPS).forEach((key) => {
const failingApp = deployedApps.filter( const failingApp = deployedApps.filter(
(currentApp: any) => ACTIVITI_CLOUD_APPS[key].name === currentApp.entry.name && 'Running' !== currentApp.entry.status (currentApp: any) => ACTIVITI_CLOUD_APPS[key].name === currentApp.entry.name && 'Deployed' !== currentApp.entry.status
); );
if (failingApp?.length > 0) { if (failingApp?.length > 0) {