aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/dbconsole/dbconsole_command.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-07-17 09:11:21 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-07-17 09:11:21 +0900
commit8be50181d3fbe0f727a68de33ec856efdf772487 (patch)
tree14c86580088b59b6b8eeb05073803dbd75e87d2e /railties/lib/rails/commands/dbconsole/dbconsole_command.rb
parentf4d52eee07954c510a8318176d6d11100afabf7b (diff)
downloadrails-8be50181d3fbe0f727a68de33ec856efdf772487.tar.gz
rails-8be50181d3fbe0f727a68de33ec856efdf772487.tar.bz2
rails-8be50181d3fbe0f727a68de33ec856efdf772487.zip
Set `RAILS_ENV` before load application file
Since #29725, load application file when `dbconsole` command is executed. However, if do not set `RAILS_ENV` before reading the application file, can not connect to the env specified in option, so added the setting of `RAILS_ENV`.
Diffstat (limited to 'railties/lib/rails/commands/dbconsole/dbconsole_command.rb')
-rw-r--r--railties/lib/rails/commands/dbconsole/dbconsole_command.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/dbconsole/dbconsole_command.rb b/railties/lib/rails/commands/dbconsole/dbconsole_command.rb
index a66eb16421..71b3455473 100644
--- a/railties/lib/rails/commands/dbconsole/dbconsole_command.rb
+++ b/railties/lib/rails/commands/dbconsole/dbconsole_command.rb
@@ -11,7 +11,7 @@ module Rails
end
def start
- ENV["RAILS_ENV"] = @options[:environment] || environment
+ ENV["RAILS_ENV"] ||= @options[:environment] || environment
case config["adapter"]
when /^(jdbc)?mysql/
@@ -157,6 +157,9 @@ module Rails
def perform
extract_environment_option_from_argument
+ # RAILS_ENV needs to be set before config/application is required.
+ ENV["RAILS_ENV"] = options[:environment]
+
require_application_and_environment!
Rails::DBConsole.start(options)
end