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 d7e3aba commit 2146249Copy full SHA for 2146249
src/utils/manage.ts
@@ -108,6 +108,8 @@ export async function startLocalStack(
108
outputChannel,
109
onStderr(data: Buffer, context) {
110
const text = data.toString();
111
+ // Currently, the LocalStack CLI does not return a non-zero exit code if the container fails to start.
112
+ // As a workaround, we look for a specific error message in the output to determine if the container failed to start.
113
if (
114
text.includes(
115
"localstack.utils.container_utils.container_client.ContainerException",
0 commit comments