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
It looks like at some point the Hashie library started wanting to use the .count attribute that the API also returns. This ends up flooding the logs with the message below as things get loaded in:
You are setting a key that conflicts with a built-in method Hashie::Mash#count defined in Enumerable. This can cause unexpected behavior when accessing the key as a property. You can still access the key via the #[] method.
You are setting a key that conflicts with a built-in method Hashie::Mash#count defined in Enumerable. This can cause unexpected behavior when accessing the key as a property. You can still access the key via the #[] method.
You are setting a key that conflicts with a built-in method Hashie::Mash#count defined in Enumerable. This can cause unexpected behavior when accessing the key as a property. You can still access the key via the #[] method.
[repeats 185 more times]
A cursory look around the internet turned up this issue in a few other repositories (including the Hashie library itself):
It looks like at some point the
Hashie
library started wanting to use the.count
attribute that the API also returns. This ends up flooding the logs with the message below as things get loaded in:A cursory look around the internet turned up this issue in a few other repositories (including the Hashie library itself):
The path forward appears to be either to disable the warning, or wrapping the result sets in a subclass instead.
The text was updated successfully, but these errors were encountered: