Showing with 10 additions and 2 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −1 lib/facter/pe_status_check.rb
  3. +1 −1 metadata.json
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v2.5.1](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v2.5.1) (2022-11-10)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v2.5.0...v2.5.1)

### Fixed

- \(SUP-3786\) Update s00036 to not trigger on 150 [\#178](https://github.com/puppetlabs/puppetlabs-pe_status_check/pull/178) ([elainemccloskey](https://github.com/elainemccloskey))

## [v2.5.0](https://github.com/puppetlabs/puppetlabs-pe_status_check/tree/v2.5.0) (2022-11-09)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_status_check/compare/v2.4.1...v2.5.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/facter/pe_status_check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
if max_queued_requests.nil?
{ S0036: true }
else
{ S0036: max_queued_requests[1].to_i < 150 }
{ S0036: max_queued_requests[1].to_i < 151 }
end
end

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": "puppetlabs-pe_status_check",
"version": "2.5.0",
"version": "2.5.1",
"author": "Marty Ewings",
"summary": "A Puppet Enterprise Module to Promote Preventative Maintenance and Self Service",
"license": "Apache-2.0",
Expand Down