@cryptotaxi247 / infra-1 / commits / 0a6fc18f

haumea/postgresql: resolve deprecation warning

Martin Weinelt committed Oct 17, 2024 at 19:55 UTC 0a6fc18f27942c6575876068706855515c3fcb45
1 file changed +1 -1
build/haumea/postgresql.nix
+1 -1
@@ -21,7 +21,6 @@
21 package = pkgs.postgresql_16;
22 dataDir = "/var/db/postgresql/16";
23 # https://pgtune.leopard.in.ua/#/
24 - logLinePrefix = "user=%u,db=%d,app=%a,client=%h ";
24 settings = {
25 listen_addresses = lib.mkForce "10.254.1.9";
26
@@ -43,6 +42,7 @@
42 log_lock_waits = "on";
43 log_temp_files = 0;
44 log_autovacuum_min_duration = 0;
45 + log_line_prefix = "user=%u,db=%d,app=%a,client=%h ";
46
47 max_connections = 500;
48 work_mem = "20MB";