bowtie-io-rack-streaming-proxy 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rack/streaming_proxy/session.rb +1 -1
- data/lib/rack/streaming_proxy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0039fc8a4348ae91b7eb71bd79aa897e7d8e19cf
|
|
4
|
+
data.tar.gz: d20156efd134e4758a2ac340958fe5f403376392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe0d4036728658d1cd3d8802ee39226b7d333938f625e92ec0ffe80b652cda3c4a100ac33792dab7fbde5ad8117fadad3df6e8ac6e4c8fe9f68ee35fbcec70ae
|
|
7
|
+
data.tar.gz: eed6974732a2c6536e67aaf01623c7dea08ba31653c233f4390020a44be0cf0c8e853b5684fb918973a09c779e23c0caddb1c3e99848e49a55c840dc1270a379
|
|
@@ -100,7 +100,7 @@ private
|
|
|
100
100
|
# Watch out: response.to_hash and response.each_header returns in different formats!
|
|
101
101
|
# to_hash requires the values to be joined with a comma.
|
|
102
102
|
headers = {}
|
|
103
|
-
response.
|
|
103
|
+
response.to_hash.each { |key, value| headers[key] = value.join("\n") }
|
|
104
104
|
log_headers :debug, 'Proxy Response Headers:', headers
|
|
105
105
|
@piper.puts headers
|
|
106
106
|
|