浏览代码

Change docker containers to shut down gracefully (#4740)

amichair 6 年之前
父节点
当前提交
b875bd2712
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      toolset/utils/docker_helper.py

+ 1 - 1
toolset/utils/docker_helper.py

@@ -250,7 +250,7 @@ class DockerHelper:
     @staticmethod
     def __stop_container(container):
         try:
-            container.kill()
+            container.stop(timeout=2)
             time.sleep(2)
         except:
             # container has already been killed