summary refs log tree commit
diff options
context:
space:
mode:
-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: