Issue #22652 has been updated by Josh Cooper. Status changed from Needs More Information to Accepted Assignee changed from Daniel Wittenberg to Kylo Ginsberg
The agent correctly sends an HTTP request with multiple `ignore` query parameters, but rack's `Request#params` method, as called in: <https://github.com/puppetlabs/puppet/blob/master/lib/puppet/network/http/rack/rest.rb#L76> only returns one of the values: <pre> {:recurse=>true, :links=>"manage", :checksum_type=>"md5", :ignore=>".git"} </pre> It appears that rack does not handle multi-valued parameters correctly <https://github.com/rack/rack/blob/master/KNOWN-ISSUES#L38>, which is an issue because we no longer serialize the ignore list as a YAML encoded array. ---------------------------------------- Bug #22652: ignore doesn't work if pluginsync enabled https://projects.puppetlabs.com/issues/22652#change-97937 * Author: Daniel Wittenberg * Status: Accepted * Priority: Normal * Assignee: Kylo Ginsberg * Category: * Target version: * Affected Puppet version: 3.3.1-rc1 * Keywords: * Branch: ---------------------------------------- /var/lib/puppet/..../.svn directories are still pushed out even if you have a global ignore File { ignore => '.svn' } Confirmed by downgrading the server to 3.2.4-1 and it all worked as expected, no .svn directories in /var/lib/puppet -- 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.
