mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
bace4170f4
At the end of _podman_client we create a mutex that we want the server to pick up. If we exit too soon, the mutex goes away and the server test fails. 5 seconds turns out to be not enough of a wait because, although the server retries the lock call every 5 seconds, it can hit `api_call_2 failed` and wait 10 seconds before retrying. Let's wait 30 seconds just to be safe. Signed-off-by: Adam Williamson <awilliam@redhat.com>
34 lines
741 B
Perl
34 lines
741 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use lockapi;
|
|
use mmapi;
|
|
use tapnet;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
$self->root_console(tty=>3);
|
|
# wait for server to be set up
|
|
mutex_lock "podman_server_ready";
|
|
mutex_unlock "podman_server_ready";
|
|
# connect to server then tell server we're done
|
|
my $ret = script_run "curl http://172.16.2.114";
|
|
mutex_create "podman_connect_done";
|
|
# sleep a bit to give server time to pick up the mutex
|
|
# server tries every 5 seconds, but an attempt can fail,
|
|
# and wait 10 seconds before retry
|
|
sleep 30;
|
|
# die if connection failed
|
|
die "connection failed!" if ($ret);
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|