William Afendy
William Afendy
When `--single-process` argument is removed, my local docker can run just fine without any error. However if I run the same code on AWS lambda, I'm getting the following error:...
Rails version `Rails 5.1.4`
Ok, I just did, i'm still getting the same behavior. Just in case if you missed, I did set `RouteTranslator.config { |config| config.hide_locale = true }` at the engine's route...
I want to use route translator on both the main app and my engine. But i'm getting the following path with my route helpers: `/en/engine/en/index` The language is being displayed...
If you remove localized block inside the engine routes, then all routes from engine don't have any `locale` information and are not translated.
# Without route translator **`git repo`** https://github.com/wafendy/blorgh **`routes.yml`** ``` en: routes: articles: articles magazines: magazines id: routes: articles: artikel magazines: majalah ``` **`routes.rb`** ``` Rails.application.routes.draw do localized do resources :articles,...
Yup, that's correct.
Same error message.