-
-
Notifications
You must be signed in to change notification settings - Fork 242
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
SystemStackError: stack level too deep on save model with RGeo::Geographic::SphericalPointImpl #81
Comments
seems cause this error |
I have the same problem on a migration, it indeed goes away if I remove the meta_request gem. |
+1 |
+1 any fix on this? |
+1 Same here. Removed meta_request gem. |
I had the same problem. Also went away by removing meta_request. |
+1 had to remove meta_request gem. Posted trace in linked issue above. |
+1 remove |
I'm still having this issue. Interesting bit is that this doesn't happen locally in development, but on CI/production. Any hints would be really helpful. Locally: > geo
#<RGeo::Geos::CAPIPointImpl:0x3fea96a81388 "POINT (-72.99974601470639 41.54232501996399)">
> geo.class
RGeo::Geos::CAPIPointImpl < Object
> geo.to_s
"POINT (-72.99974601470639 41.54232501996399)"
> geo.to_json
"\"POINT (-72.99974601470639 41.54232501996399)\"" On CI: > geo
=> #<RGeo::Cartesian::PointImpl:0x2b1646ef4ca0 "POINT (-72.7430602 41.7533888)">
> geo.class
=> RGeo::Cartesian::PointImpl < Object
> geo.to_s
=> "POINT (-72.7430602 41.7533888)"
> geo.to_json
SystemStackError: stack level too deep
from /home/circleci/project/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object/json.rb:171:in `each' |
Hello, i follow blog tutorial and got strange error in rails console:
my app is dead simple:
and i'm using Postgressapp 9.2.4.3
The text was updated successfully, but these errors were encountered: