-
|
Trying to upgrade our rails app from 6.1 to 7.0. When I try to launch rails console I'm getting error: Getting the same error on version 3.4.0 of active admin gem. To mitigate possible impact from our changes in code I've removed all of the ActiveAdmin related code from the app for quick check. The error occurs just after adding the activeadmin gem (no need to add any initializer or related code) versions |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It seems I've solved the issue, sorry for interrupting. Some details/flow which might be useful for someone:
And I've found our custom controller was causing the issue. The tricky part is: commenting the whole controller code (as I did before) is not enough, removing the file fixes things. Then I was able to fix this through:
|
Beta Was this translation helpful? Give feedback.
It seems I've solved the issue, sorry for interrupting.
Some details/flow which might be useful for someone:
And I've found our custom controller