From ddb46f864f7c1601fe068848dc62db64018f84f0 Mon Sep 17 00:00:00 2001 From: Jona Date: Sat, 18 Nov 2023 20:07:12 -0500 Subject: [PATCH] capitalization matters? --- stack/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack/database.py b/stack/database.py index 24a99312..a5944cc8 100644 --- a/stack/database.py +++ b/stack/database.py @@ -15,7 +15,7 @@ # Postgres tuning values ref: https://github.com/developmentseed/how/tree/main/dev/postgresql database_flags=[ # flag definitions and allowable values here: https://cloud.google.com/sql/docs/postgres/flags - dict(name="pg_stat_statements.track", value="ALL"), + dict(name="pg_stat_statements.track", value="all"), # Should be 1/4 of total system memory (15Gb) # shared_buffers: Converted from 468 MB to 59904 units of 8KB dict(name="shared_buffers", value="59904"),