Issue #22384 has been updated by Andrew Parker. Target version set to 3.3.1 Affected Puppet version changed from 3.3.0-rc2 to 3.3.0-rc3
Yeah. It looks like we ended up changing from info to notice when bringing together the handling of HTTP response codes. Since there is nothing "wrong" with these file requests, notice is too severe of a level. As unfortunate as this is, I don't want to delay the 3.3.0 release further for this. We'll follow up with a 3.3.1 to address this. ---------------------------------------- Bug #22384: Excessive logging for files not found https://projects.puppetlabs.com/issues/22384#change-97311 * Author: Chuck Schweizer * Status: Needs Decision * Priority: Normal * Assignee: Andrew Parker * Category: logging * Target version: 3.3.1 * Affected Puppet version: 3.3.0-rc3 * Keywords: * Branch: ---------------------------------------- The following codes is being used to find the first matching file. In 3.3.0-rc2 this produces an excessive amount of logging for every puppet run. Not Found: Could not find file_metadata modules/ssh_keys/user1/var1_var2.pub Not Found: Could not find file_metadata modules/ssh_keys/user1/var1_all.pub Not Found: Could not find file_metadata modules/ssh_keys/user1/all_var2.pub file { "/etc/ssh/keys/$title": ensure => present, mode => '0644', owner => root, group => root, source => [ "puppet:///modules/ssh_keys/${title}/var1_var2.pub", "puppet:///modules/ssh_keys/${title}/var1_all.pub", "puppet:///modules/ssh_keys/${title}/all_var2.pub", "puppet:///modules/ssh_keys/${title}/all_all.pub", ], } -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/groups/opt_out.
