You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: Move PostgreSQL auto_explain config to conf.d (#1943)
* refactor: Move PostgreSQL auto_explain config to conf.d
Moves `auto_explain.log_min_duration` setting from inline Dockerfile definitions and the main PostgreSQL configuration file to a dedicated `auto_explain.conf` file within the `conf.d` directory.
This change centralizes the configuration for better management and consistency across different PostgreSQL versions.
Updates PostgreSQL release versions in `ansible/vars.yml` with the project-specific suffix.
* refactor: Simplify PostgreSQL conf template sourcing
The source path for PostgreSQL configuration templates has been simplified.
Previously, underscores in `ext_item` were removed when constructing the template filename. This change removes that transformation, directly using `{{ ext_item }}.conf`. This implies that template files in `files/postgresql_config/conf.d/` now match the `ext_item` loop variables directly (e.g., `auto_explain.conf`).
0 commit comments