summary refs log tree commit
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-09-01 21:32:05 +0000
committerEric Wong <e@80x24.org>2022-09-01 21:34:23 +0000
commite3945c3acc5a6e8d3af4cc8639dcb12fb85a8aee (patch)
treeebe1cc1d1c60e885fac282f16f48041d4ecc3145
parent0abf6b6c17fafd8d525a2539b88bdd80eec2f2aa (diff)
downloadrack-chunk.tar.gz
chunked: remove deprecation warning chunk
Now that Rack::Chunked is gracefully a no-op for non-1.1 HTTP
versions, do not cause unnecessary pain for end users upgrading
to Rack 3.
-rw-r--r--lib/rack/chunked.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/rack/chunked.rb b/lib/rack/chunked.rb
index 004163d9..b66f467b 100644
--- a/lib/rack/chunked.rb
+++ b/lib/rack/chunked.rb
@@ -4,8 +4,6 @@ require_relative 'constants'
 require_relative 'utils'
 
 module Rack
-  warn "Rack::Chunked is deprecated and will be removed in Rack 3.1", uplevel: 1
-
   # Middleware that applies chunked transfer encoding to response bodies
   # when the response does not include a content-length header.
   #