Ryan Bates
Ryan Bates
I ran into this today. It would be great to get it fixed! Can someone address this PR?
I recently ran into `rails assets:precompile` hanging and found out it was due to a misconfigured [assets_sync](https://github.com/AssetSync/asset_sync). Posting this here in case someone else runs into the same issue.
@tian-im > Have you recently created a new file under app/models which might be stuck in an infinite loading loop? This happens after restarting the rails server and reloading the...
@tian-im I did some profiling and the issue is the `e.message` call [here](https://github.com/wallaby-rails/wallaby-rails/blob/main/wallaby-core/lib/wallaby/classifier.rb#L32). When calling the exception message it does a `DidYouMean` check which takes a few milliseconds. These add...
Thanks, I'll give it a try on Friday.
@tian-im it seems the first page load after the server starts is still slow but subsequent loads are faster. Makes sense if you're doing caching. This will work ok for...
> @ryanb Do you have more details about the `Account::Invoice`? e.g. Sorry I mistyped, it's `Accounts::Invoice` (plural Accounts). > * What's its relative file path? `app/models/accounts/invoice.rb` > * Is `Account`...
@tian-im the slowness is fixed in `main`, thanks! Still raising 404 on `Accounts::Invoice`. Interestingly other namespaced models are working. **Update:** Aha, I just realized it's mapping to the Accounts controller,...
@tian-im > That's interesting. Did you happen to upgrade the Rails at the same time? No, the only difference was upgrading from Wallaby 7.0.0 beta 2 to main branch. >...
@jgoz thanks for the response. I understand about being busy! I'll try to take a look at submitting a PR for this some day. I got it working as-is in...