Issue #4245 has been updated by Brice Figureau. Affected version changed from 2.6.0rc3 to 0.25.0
Markus Roberts wrote: > Looking at the code, it appears this problem was present in 0.25.x as well. > Am I missing something? Any idea why we haven't seen it? Yes, I confirm the problem is present in 0.25.x (since the code didn't change). It just happens I'm doing my tests in master HEAD, so I used this version. We are not seeing this because you need a freshly started master (default acl are inserted only once) and (at least) two clients knocking at the door at the exact same time, which in production happens extremely rarely (especially on MRI because of the threading model). This is about 50% reproducible with JRuby and puppet-test. With JRuby and its native threading such issues can happen more frequently, and I'm sure I'll find more. ---------------------------------------- Bug #4245: Multithread issue with rest_authconfig default ACL insertion http://projects.puppetlabs.com/issues/4245 Author: Brice Figureau Status: Accepted Priority: Normal Assigned to: Markus Roberts Category: threading Target version: Affected version: 0.25.0 Keywords: Branch: Default ACL insertion is done when the first client connects to the master (or when the auth.conf file is read). If more than one client connects at the same time, we can end up inserting the default ACL twice, and the second set might throw an error (ie duplicate ACE) that can abort the connection. The solution is to add a critical section around loading of the default ACL and/or auth.conf parsing. -- 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 post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
