diff options
author | baude <bbaude@redhat.com> | 2018-10-09 13:02:45 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-10-11 09:37:54 -0500 |
commit | 9be18c2eaf0fbd9f868ecab54fd5029881e132f9 (patch) | |
tree | 15f8ccfc96ed656ea0c22097dbdc218ecd9254f2 /vendor.conf | |
parent | 23c9816ba9ff1af3538dcb725d86fc565df53a30 (diff) | |
download | podman-9be18c2eaf0fbd9f868ecab54fd5029881e132f9.tar.gz podman-9be18c2eaf0fbd9f868ecab54fd5029881e132f9.tar.bz2 podman-9be18c2eaf0fbd9f868ecab54fd5029881e132f9.zip |
Stop containers in parallel fashion
Prior, we were stopping containers serially. So if a container had a default
timeout of 10 seconds and there were five containers being stopped, the operation
would take roughly 50 seconds. If we stop these containers in parallel, the operation
should be roughly 10 seconds and change which is a significant speed up at scale.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'vendor.conf')
-rw-r--r-- | vendor.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor.conf b/vendor.conf index b526c1560..02e260cc9 100644 --- a/vendor.conf +++ b/vendor.conf @@ -75,6 +75,7 @@ golang.org/x/net c427ad74c6d7a814201695e9ffde0c5d400a7674 golang.org/x/sys master golang.org/x/text f72d8390a633d5dfb0cc84043294db9f6c935756 golang.org/x/time f51c12702a4d776e4c1fa9b0fabab841babae631 +golang.org/x/sync master google.golang.org/grpc v1.0.4 https://github.com/grpc/grpc-go gopkg.in/cheggaaa/pb.v1 v1.0.7 gopkg.in/inf.v0 v0.9.0 |