class Aws::S3::Plugins::Md5s::Handler

def call(context)

def call(context)
  body = context.http_request.body
  if body.respond_to?(:size) && body.size > 0
    context.http_request.headers['Content-Md5'] ||= md5(body)
  end
  @handler.call(context)
end