summary refs log tree commit
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2014-11-26 20:11:21 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2014-11-26 20:11:21 -0200
commitf08b5a197f9d95657c484ba7c67de7ea398e592c (patch)
tree1d05f05d532facb77554672c4926d890fa61c876
parentb0b5fb9467e6ed777d3eaf35afc81d758e308aab (diff)
downloadrack-f08b5a197f9d95657c484ba7c67de7ea398e592c.tar.gz
RACK_MULTIPART_LIMIT is a better name
-rw-r--r--lib/rack/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/utils.rb b/lib/rack/utils.rb
index a76062dd..586bd6e4 100644
--- a/lib/rack/utils.rb
+++ b/lib/rack/utils.rb
@@ -71,7 +71,7 @@ module Rack
     # The maximum number of parts a request can contain. Accepting to many part
     # can lead to the server running out of file handles.
     # Set to `0` for no limit.
-    self.multipart_part_limit = (ENV['RACK_MULTIPART_PART_LIMIT'] || 128).to_i
+    self.multipart_part_limit = (ENV['RACK_MULTIPART_LIMIT'] || 128).to_i
 
     # Stolen from Mongrel, with some small modifications:
     # Parses a query string by breaking it up at the '&'