We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ef486 commit d601de2Copy full SHA for d601de2
src/utils/localstack-status.ts
@@ -91,6 +91,9 @@ function getLocalStackStatus(
91
if (healthCheck === true) {
92
return "running";
93
} else {
94
+ // When the LS container is running, and the health check fails:
95
+ // - If the previous status was "running", we are likely stopping LS
96
+ // - If the previous status was "stopping", we are still stopping LS
97
if (previousStatus === "running" || previousStatus === "stopping") {
98
return "stopping";
99
}
0 commit comments