aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/lib/action_dispatch/middleware/static.rb7
-rw-r--r--actionpack/test/dispatch/static_test.rb3
2 files changed, 6 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/static.rb b/actionpack/lib/action_dispatch/middleware/static.rb
index f5c2acbfb9..fdd1bc4e69 100644
--- a/actionpack/lib/action_dispatch/middleware/static.rb
+++ b/actionpack/lib/action_dispatch/middleware/static.rb
@@ -47,10 +47,11 @@ module ActionDispatch
if gzip_path && gzip_encoding_accepted?(env)
env['PATH_INFO'] = gzip_path
status, headers, body = @file_server.call(env)
- headers['Content-Encoding'] = 'gzip'
- if status != 304
- headers['Content-Type'] = content_type(path)
+ if status == 304
+ return [status, headers, body]
end
+ headers['Content-Encoding'] = 'gzip'
+ headers['Content-Type'] = content_type(path)
else
status, headers, body = @file_server.call(env)
end
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb
index 9164cbd3aa..288a2084f6 100644
--- a/actionpack/test/dispatch/static_test.rb
+++ b/actionpack/test/dispatch/static_test.rb
@@ -149,7 +149,8 @@ module StaticTests
response = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip', 'HTTP_IF_MODIFIED_SINCE' => last_modified.httpdate)
assert_equal 304, response.status
assert_equal nil, response.headers['Content-Type']
- assert_equal 'gzip', response.headers['Content-Encoding']
+ assert_equal nil, response.headers['Content-Encoding']
+ assert_equal nil, response.headers['Vary']
end
# Windows doesn't allow \ / : * ? " < > | in filenames