stellar-core: fix PostgreSQL check on Hydra

This commit is contained in:
Angel J
2026-05-22 20:02:16 -07:00
parent ee4a6d835b
commit 8e41f7b8d7
+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
'';