stellar-core: fix PostgreSQL check on Hydra (#523224)

This commit is contained in:
Peder Bergebakken Sundt
2026-05-29 19:03:46 +00:00
committed by GitHub
+2 -2
View File
@@ -129,10 +129,10 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
postgresqlTestUserOptions = "LOGIN CREATEDB";
postgresqlTestUserOptions = "LOGIN SUPERUSER";
postgresqlTestSetupPost = ''
for database in $(seq 0 15); do
for database in $(seq 0 3); do
createdb "test$database"
done
'';