diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-09-04 14:35:37 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-09-04 19:55:54 +0200 |
commit | 8e337aff5ae755794d0d7844d146f5f8533152bb (patch) | |
tree | 6b052d4c1698af5dc7602acc73c67302fed84b81 /vendor/modules.txt | |
parent | f1a3e02aea68a37f85cb924c934be1bcc4131d7d (diff) | |
download | podman-8e337aff5ae755794d0d7844d146f5f8533152bb.tar.gz podman-8e337aff5ae755794d0d7844d146f5f8533152bb.tar.bz2 podman-8e337aff5ae755794d0d7844d146f5f8533152bb.zip |
libpod: avoid polling container status
use the inotify backend to be notified on the container exit instead
of polling continuosly the runtime. Polling the runtime slowns
significantly down the podman execution time for short lived
processes:
$ time bin/podman run --rm -ti fedora true
real 0m0.324s
user 0m0.088s
sys 0m0.064s
from:
$ time podman run --rm -ti fedora true
real 0m4.199s
user 0m5.339s
sys 0m0.344s
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'vendor/modules.txt')
-rw-r--r-- | vendor/modules.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/modules.txt b/vendor/modules.txt index 3acff38c9..7d9095aac 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -543,7 +543,6 @@ gopkg.in/yaml.v2 k8s.io/api/core/v1 # k8s.io/apimachinery v0.0.0-20190624085041-961b39a1baa0 k8s.io/apimachinery/pkg/apis/meta/v1 -k8s.io/apimachinery/pkg/util/wait k8s.io/apimachinery/pkg/util/runtime k8s.io/apimachinery/pkg/api/resource k8s.io/apimachinery/pkg/runtime |