Skip to content

Commit

Permalink
fix: pod status
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed May 27, 2024
1 parent e42f5e8 commit bb63d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/managers/applicationManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export class ApplicationManager extends Publisher<ApplicationState[]> implements
console.log(' stopApplication appPod', appPod);

// if the pod is already stopped skip
if (appPod.Status === 'stopped') {
if (appPod.Status === 'Exited') {
return appPod;
}

Expand Down

0 comments on commit bb63d91

Please sign in to comment.