-
-
Notifications
You must be signed in to change notification settings - Fork 173
Description
Cookbook version
7.0.0
Chef-client version
14.1.12
Platform Details
Windows Server 2012 R2
Scenario:
For example, the following successfully creates an apppool with the default value of 1740 minutes under Recycling-->Fixed Intervals-->Regular time intervals (in minutes):
iis_pool node['my']['apppool'] do
runtime_version '4.0'
start_mode :AlwaysRunning
pipeline_mode :Integrated
queue_length 4000
max_processes 6
idle_timeout '00:00:00'
recycle_schedule_clear true
rapid_fail_protection false
action :add
end
Steps to Reproduce:
I believe this will be the result in all cases with 7.0.0 since there are only two references to recycle_schedule_clear in the current release, one in the README and one in resources/pool.rb where it is simply included as an optional property. I might be missing something but I don't see where any work is being performed as a result of setting this property.
Expected Result:
All recycle times on the specified apppool to clear
Actual Result:
No errors, but also no results.