We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c45001a commit b75d861Copy full SHA for b75d861
lib/puppet/provider/dsc_base_provider/dsc_base_provider.rb
@@ -917,6 +917,9 @@ def invoke_params(resource)
917
params[:ModuleName] = resource[:dscmeta_module_name]
918
end
919
resource[:parameters].each do |property_name, property_hash|
920
+ # ignore dsc_timeout, since it is only used to specify the powershell command timeout
921
+ # and timeout itself is not a parameter to the DSC resource
922
+ next if property_name == :dsc_timeout
923
# strip dsc_ from the beginning of the property name declaration
924
name = property_name.to_s.gsub(/^dsc_/, '').to_sym
925
params[:Property][name] = case property_hash[:mof_type]
0 commit comments