You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by to...@apache.org on 2023/06/25 11:02:10 UTC

[shardingsphere] branch master updated: Fix Docker network leakage in E2E (#26548)

This is an automated email from the ASF dual-hosted git repository.

totalo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 00c30b62c5b Fix Docker network leakage in E2E (#26548)
00c30b62c5b is described below

commit 00c30b62c5bf77092f969bb51b98988fd900d7cf
Author: 吴伟杰 <wu...@apache.org>
AuthorDate: Sun Jun 25 19:02:03 2023 +0800

    Fix Docker network leakage in E2E (#26548)
---
 .../shardingsphere/test/e2e/env/container/atomic/ITContainers.java       | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/atomic/ITContainers.java b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/atomic/ITContainers.java
index ed641442ffd..cc033c982d8 100644
--- a/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/atomic/ITContainers.java
+++ b/test/e2e/env/src/test/java/org/apache/shardingsphere/test/e2e/env/container/atomic/ITContainers.java
@@ -110,5 +110,6 @@ public final class ITContainers implements Startable {
     public void stop() {
         embeddedContainers.forEach(Startable::close);
         dockerContainers.forEach(Startable::close);
+        network.close();
     }
 }