summary refs log tree commit
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2014-12-23 16:03:13 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2014-12-23 16:03:13 -0200
commit8d21788798b521b97beb10047ebf593ddc0aaed2 (patch)
treeed1faaf55150ed36e13c006a1420f6e9a2de6dfb
parentc096c50c00230d8eee13ad5f79ad027d9a3f3ca9 (diff)
downloadrack-8d21788798b521b97beb10047ebf593ddc0aaed2.tar.gz
Fix RACK_MULTIPART_LIMIT removal wording
-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 c500d163..eea8c879 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 too many part
     # can lead to the server running out of file handles.
     # Set to `0` for no limit.
-    # TODO: remove RACK_MULTIPART_LIMIT, it is not documented and was introduced by error.
+    # FIXME: RACK_MULTIPART_LIMIT was introduced by mistake and it will be removed in 1.7.0
     self.multipart_part_limit = (ENV['RACK_MULTIPART_PART_LIMIT'] || ENV['RACK_MULTIPART_LIMIT'] || 128).to_i
 
     # Stolen from Mongrel, with some small modifications: