Im getting the following errors when I try to interact with about any model in my app.
ruby(25572,0x1d995dec0) malloc: double free for ptr 0x130011200 ruby(25572,0x1d995dec0) malloc: *** set a breakpoint in malloc_error_break to debug
I dont seem to be getting errors when using basic rails commands just trying to interact with models, here's an example:
Loading production environment (Rails 7.0.8) irb(main):001> Time.zone.now => Tue, 26 Dec 2023 19:55:34.680327000 UTC +00:00 irb(main):002> SecureRandom.hex(8) => "750e8d097402c96a" irb(main):003> Program.first ruby(25696,0x1d995dec0) malloc: double free for ptr 0x115008200 ruby(25696,0x1d995dec0) malloc: *** set a breakpoint in malloc_error_break to debug
The app runs great in development. I've never seen these errors before I don't even know where to start testing.