Speed up init in start_dev_db.sh using no-sync option (#5888)

This commit is contained in:
dullbananas 2025-07-26 17:13:54 -07:00 committed by GitHub
parent 88160dc86f
commit eae7f1ba02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ config_args=(
)
# Create cluster
pg_ctl init --silent --options="--username=postgres --auth=trust --no-instructions"
pg_ctl init --silent --options="--username=postgres --auth=trust --no-instructions --no-sync"
# Start server
pg_ctl start --silent --options="${config_args[*]}"