-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mouse with threads does not work well Perl 5.21.2 #29
Comments
Perl 5.21.3 also fails this test. |
It's a thread safefy issue in Mouse. It has always had the potential for failure, but is more noticable in 5.21.2 onwards due to a new optimisation for looking up constant hash keys (just the HEK address is compared in the hash bucket entries, not the actual key string). Mouse accessor XS subs have the constant key attached as magic to the CV, but also sets |
Thanks for information. |
This issue is not reproduced in perl 5.21.8. |
WTF. This is sometimes reproduced. |
This causes test failure of
Text::Xslate
.Here is test program.
The test is failed with Perl 5.21.2
But the test is passed before Perl 5.21.2.
Is this
Perl
issue orthreads
module ?The text was updated successfully, but these errors were encountered: