Method: HttpClientGenerator::Plugs::SetRequestId#call
- Defined in:
- lib/http_client_generator/plugs/set_request_id.rb
#call(req) ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/http_client_generator/plugs/set_request_id.rb', line 14 def call(req) request_id = req.rest_args[:request_id] || SecureRandom.uuid req.headers[@header_name] = request_id req.extra[:request_id] = request_id req end |