Skip to content

Commit

Permalink
Merge pull request #213 from os-autoinst/revert-212-postgres-version
Browse files Browse the repository at this point in the history
Revert "Set postgres container version to 16 to ensure compatibility"
  • Loading branch information
okurz authored Oct 4, 2024
2 parents 261b2a4 + e7c4aba commit 1d41930
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/containers/setup_env.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ use utils;
sub run {
assert_script_run('mkdir -p /root/data/factory/{iso,hdd,other} /root/data/tests');
assert_script_run('docker network create testing');
# Temporary fix version https://progress.opensuse.org/issues/167524
assert_script_run('retry -s 30 -- docker run --rm -d --network testing -e POSTGRES_PASSWORD=openqa -e POSTGRES_USER=openqa -e POSTGRES_DB=openqa --net-alias=db --name db postgres:16', timeout => 600);
assert_script_run('retry -s 30 -- docker run --rm -d --network testing -e POSTGRES_PASSWORD=openqa -e POSTGRES_USER=openqa -e POSTGRES_DB=openqa --net-alias=db --name db postgres', timeout => 600);
wait_for_container_log('db', 'database system is ready to accept connections', 'docker');
}

Expand Down

0 comments on commit 1d41930

Please sign in to comment.