Skip to content

Commit 4fbbdb3

Browse files
committed
Suppress warning
1 parent e0a625d commit 4fbbdb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/DockerManager.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,9 @@ export default class DockerManager {
17861786
await container.stop();
17871787
await container.remove({ force: true });
17881788
} catch (e) {
1789-
this.log.warn(`Cannot remove temporary container ${tempContainerName}: ${e.message}`);
1789+
if (!e.message.includes('already stopped')) {
1790+
this.log.warn(`Cannot remove temporary container ${tempContainerName}: ${e.message}`);
1791+
}
17901792
}
17911793
}
17921794
}

0 commit comments

Comments
 (0)