Skip to content

Commit

Permalink
haumea/postgresql: return fp numbers to decimal notation
Browse files Browse the repository at this point in the history
This was a bug in nixfmt-rfc-style.

NixOS/nixfmt#244
  • Loading branch information
mweinelt committed Jan 12, 2025
1 parent c7a93ad commit 3e0eb3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/haumea/postgresql.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
log_statement = "none";

# pgbadger-compatible logging
log_transaction_sample_rate = 1.0e-2;
log_transaction_sample_rate = 0.01;
log_min_duration_statement = 5000;
log_checkpoints = "on";
log_connections = "on";
Expand Down Expand Up @@ -80,8 +80,8 @@
# benefit from frequent vacuums, so this should
# help. In particular, I'm thinking the jobsets
# pages.
autovacuum_vacuum_scale_factor = 2.0e-2;
autovacuum_analyze_scale_factor = 1.0e-2;
autovacuum_vacuum_scale_factor = 0.02;
autovacuum_analyze_scale_factor = 0.01;

shared_preload_libraries = "pg_stat_statements";
compute_query_id = "on";
Expand Down

0 comments on commit 3e0eb3a

Please sign in to comment.