Skip to content

Commit 1fdc026

Browse files
committed
Increase timeout to 6 seconds (7 attempts) (microsoft/vscode-remote-release#6509)
1 parent 9ba1fda commit 1fdc026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/spec-shutdown/dockerUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export async function removeContainer(params: DockerCLIParameters | PartialExecP
173173
let eventsProcess: Exec | undefined;
174174
let removedSeenP: Promise<void> | undefined;
175175
try {
176-
for (let i = 0, n = 4; i < n; i++) {
176+
for (let i = 0, n = 7; i < n; i++) {
177177
try {
178178
await dockerCLI(params, 'rm', '-f', nameOrId);
179179
return;

0 commit comments

Comments
 (0)