When I load from system in development {{provider_url}}/apiconfig/errors, I see:

In case you want the stacktrace:
NoMethodError (undefined method `map' for nil:NilClass
Did you mean? tap):
app/services/integration_errors_service.rb:4:in `list'
app/controllers/api/errors_controller.rb:13:in `block in index'
app/controllers/api/errors_controller.rb:12:in `index'
lib/three_scale/middleware/dev_domain.rb:25:in `call'
lib/three_scale/middleware/dev_domain.rb:25:in `call'
lib/three_scale/middleware/multitenant.rb:116:in `_call'
lib/three_scale/middleware/multitenant.rb:111:in `call'
I can bypass it by changing this line:
|
APIClient::Collection.new(result[:attributes].map { |attrs| new attrs }, |
for:
APIClient::Collection.new((result[:attributes] || []).map { |attrs| new attrs },
but this is more a workaround to don't get stuck in what I have to do than an actual fix 😄 So just saying because it is not blocking or too urgent but it should be fixed at some point 😄
When I load from system in development

{{provider_url}}/apiconfig/errors, I see:In case you want the stacktrace:
I can bypass it by changing this line:
pisoni/lib/3scale/core/service_error.rb
Line 25 in ff95af9
for:
but this is more a workaround to don't get stuck in what I have to do than an actual fix 😄 So just saying because it is not blocking or too urgent but it should be fixed at some point 😄