Same bug as #13 but with AlertLimit instead of ServiceError.
In development locally, it raises this error when it does ThreeScale::Core::AlertLimit.load_all(backend_id)
I can bypass it by changing this line:
|
results[:attributes].map { |attrs| new(attrs) } |
for:
(results[:attributes] || []).map { |attrs| new(attrs) }
So it is not urgent, but it is a bug that should be fixed anyway 😄