You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@deepj Sorry for just getting to this. You pinged me while I was traveling and I just missed it. I'm working on a fix now. It's pretty straightforward. The problem is we're currently hashing BigDecimal objects as if they're arbitrary object references. We need to treat them like value types.
This issue has been fixed as of 3b887a1. We didn't customize the hash method for BigDecimal, so it was falling back to the default, which just tries to assign an identifier to each object with good hash distribution. The fix should appear in our next release.
This causes a problem i.e. while matching in RSpec
change
methodTruffleRuby 1.0.0 RC15 (wrong)
MRI 2.6.2 (correct)
The text was updated successfully, but these errors were encountered: