1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Use correct var in early hints (#1550)

Oops this was using `v` instead of `vs` here which means it couldn't
have been working.

Ref https://github.com/rails/rails/issues/32329
and https://github.com/puma/puma/pull/1403/files#r176663645
This commit is contained in:
Eileen M. Uchitelle 2018-03-29 10:57:15 -04:00 committed by Nate Berkopec
parent 9aea96eaf3
commit 1a13e6cf7e

View file

@ -606,7 +606,7 @@ module Puma
fast_write client, "#{k}: #{v}\r\n"
end
else
fast_write client, "#{k}: #{v}\r\n"
fast_write client, "#{k}: #{vs}\r\n"
end
end