Showing with 7 additions and 2 deletions.
  1. +4 −0 CHANGELOG.md
  2. +2 −1 manifests/postgresql_settings.pp
  3. +1 −1 metadata.json
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Z Release 0.10.1

- Bug Fixes
- Do not manage fact_values auto vacuum on PE 2017.2.0
3 changes: 2 additions & 1 deletion manifests/postgresql_settings.pp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@
}
}

if $manage_fact_values_autovacuum_cost_delay {
if ( versioncmp('2017.2.0', $facts['pe_server_version']) >= 0
and $manage_fact_values_autovacuum_cost_delay ) {
pe_databases::set_puppetdb_table_autovacuum_cost_delay_zero { 'fact_values' : }
}

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "npwalker/pe_databases",
"version": "0.10.0",
"version": "0.10.1",
"author": "npwalker",
"summary": "A Puppet Module for Backing Up / Maintaining / Tuning Your Puppet Enterprise Databases",
"license": "Apache-2.0",
Expand Down