diff options
author | Chris Evich <cevich@redhat.com> | 2021-08-31 09:01:56 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2021-08-31 14:01:17 -0400 |
commit | 1ed0a7209d7a6ea8cab4f559308f4110fd2a2277 (patch) | |
tree | cd85ca65b80f78c0da35cf1f4726f1fbcded1b1a /.cirrus.yml | |
parent | 8ab84b437352bf2b3653fe92fbfa60a59b980a93 (diff) | |
download | podman-1ed0a7209d7a6ea8cab4f559308f4110fd2a2277.tar.gz podman-1ed0a7209d7a6ea8cab4f559308f4110fd2a2277.tar.bz2 podman-1ed0a7209d7a6ea8cab4f559308f4110fd2a2277.zip |
Cirrus: Reduce APIv2 task timeout
At the time of this commit, a significant problem has been identified
(introduced in f5ce02b227f4). The effect is, `podman pull` has a chance
of hanging, especially when re-pulling an existing image. While a fix
is in the works, there's no reason to make developers wait the full
(default) 1-hour timeout for the APIv2 task. Reduce it to 2x nominal
test runtime, so if the hang/flake is hit, the task can be re-run more
quickly.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index f39e599ba..5087a00eb 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -423,6 +423,9 @@ apiv2_test_task: depends_on: - validate gce_instance: *standardvm + # Test is normally pretty quick, about 10-minutes. If it hangs, + # don't make developers wait the full 1-hour timeout. + timeout_in: 20m env: <<: *stdenvars TEST_FLAVOR: apiv2 |