aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ilizarov <dilizarov@gmail.com>2014-08-15 15:44:01 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-20 20:43:39 -0200
commit7f5cf3a3daececa062299a2b9c86631aa0c3a0cb (patch)
treef3cfe575a20f5646d0aa95b2f4dd226fe3c57dc0
parent14a6e179282010c62f87311f168fcb6a04a8b5ee (diff)
downloadrails-7f5cf3a3daececa062299a2b9c86631aa0c3a0cb.tar.gz
rails-7f5cf3a3daececa062299a2b9c86631aa0c3a0cb.tar.bz2
rails-7f5cf3a3daececa062299a2b9c86631aa0c3a0cb.zip
Aliased the ActionDispatch::Request#uuid method with ActionDispatch::Request#request_id
-rw-r--r--actionpack/CHANGELOG.md6
-rw-r--r--actionpack/lib/action_dispatch/http/request.rb2
-rw-r--r--actionpack/lib/action_dispatch/middleware/request_id.rb2
3 files changed, 9 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 055d4b4f5b..92ba57b7d5 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Alias the `ActionDispatch::Request#uuid` method to `ActionDispatch::Request#request_id`.
+ Due to implementation, `config.log_tags = [:request_id]` also works in substitute
+ for `config.log_tags = [:uuid]`.
+
+ *David Ilizarov*
+
* Non-string authenticity tokens do not raise NoMethodError when decoding
the masked token.
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb
index cadbfc88cb..6571060793 100644
--- a/actionpack/lib/action_dispatch/http/request.rb
+++ b/actionpack/lib/action_dispatch/http/request.rb
@@ -253,6 +253,8 @@ module ActionDispatch
@uuid ||= env["action_dispatch.request_id"]
end
+ alias_method :request_id, :uuid
+
# Returns the lowercase name of the HTTP server software.
def server_software
(@env['SERVER_SOFTWARE'] && /^([a-zA-Z]+)/ =~ @env['SERVER_SOFTWARE']) ? $1.downcase : nil
diff --git a/actionpack/lib/action_dispatch/middleware/request_id.rb b/actionpack/lib/action_dispatch/middleware/request_id.rb
index cf31815c23..b9ca524309 100644
--- a/actionpack/lib/action_dispatch/middleware/request_id.rb
+++ b/actionpack/lib/action_dispatch/middleware/request_id.rb
@@ -3,7 +3,7 @@ require 'active_support/core_ext/string/access'
module ActionDispatch
# Makes a unique request id available to the action_dispatch.request_id env variable (which is then accessible through
- # ActionDispatch::Request#uuid) and sends the same id to the client via the X-Request-Id header.
+ # ActionDispatch::Request#uuid or the alias ActionDispatch::Request#request_id) and sends the same id to the client via the X-Request-Id header.
#
# The unique request id is either based on the X-Request-Id header in the request, which would typically be generated
# by a firewall, load balancer, or the web server, or, if this header is not available, a random uuid. If the