Skip to content

Commit

Permalink
Increase timeout for podman pull
Browse files Browse the repository at this point in the history
Pulling can take some time, so let's increase the timeout.
  • Loading branch information
grisu48 committed Dec 17, 2024
1 parent 6d1eb64 commit 8b62a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/containers/bci_collect_stats.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sub run {
my $image = get_required_var('CONTAINER_IMAGE_TO_TEST');
return unless ($engines =~ /podman/);

script_retry("podman pull -q $image", retry => 3, delay => 120);
script_retry("podman pull -q $image", timeout => 300, retry => 3, delay => 120);
my $size_mb = script_output("podman inspect --format \"{{.VirtualSize}}\" $image") / 1000000;
my %args;
$args{arch} = get_required_var('ARCH');
Expand Down

0 comments on commit 8b62a50

Please sign in to comment.