aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-03-11 23:16:47 +0900
committerGitHub <noreply@github.com>2019-03-11 23:16:47 +0900
commitc41269ebc8d1f608e5161f932fb6a3ae7c85a562 (patch)
tree2d777cc45ebdd80af24d26e279b76d8bc7e681d9 /railties
parent2259b486f173e3259a9c3871803b6aecdd74b81f (diff)
parent538a459a3b8b4192636c58b32f48a9e87089cb10 (diff)
downloadrails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.tar.gz
rails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.tar.bz2
rails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.zip
Merge pull request #35568 from prathamesh-sonpatki/server_squish
Squish the deprecation messages across the codebase
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/commands/server/server_command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb
index a218393d59..43f7b76fd6 100644
--- a/railties/lib/rails/commands/server/server_command.rb
+++ b/railties/lib/rails/commands/server/server_command.rb
@@ -264,7 +264,7 @@ module Rails
def deprecate_positional_rack_server_and_rewrite_to_option(original_options)
if using
- ActiveSupport::Deprecation.warn(<<~MSG)
+ ActiveSupport::Deprecation.warn(<<~MSG.squish)
Passing the Rack server name as a regular argument is deprecated
and will be removed in the next Rails version. Please, use the -u
option instead.