falcon 0.33.9 → 0.33.10
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/falcon/proxy.rb +2 -2
- data/lib/falcon/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9004946e059feb6d57d8d638b996b22e76d0ce70a32dfadfd3061b93d9741178
|
|
4
|
+
data.tar.gz: '0584dd8c92dbf14f6b2c93fb7aaca7d6aa41338073ad36b32791e63f5386ff0e'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f462e350edba1d10bdec274181318aceecfc0435bdbdb504c0e139942288941777a1faf89ce37d7a876484fda0fae475d3f32ebb8e516eb9074013f25bb9bffe
|
|
7
|
+
data.tar.gz: 0bda6f2395f53a49c2267e56d2a168be72ca4cbbce74ef56c4f4739d29b1849e1435ae944b4a26a4b2d24c1464427bab04d097db6366a8c8c31200a246917945
|
data/lib/falcon/proxy.rb
CHANGED
|
@@ -93,8 +93,8 @@ module Falcon
|
|
|
93
93
|
Async.logger.debug(self) do |buffer|
|
|
94
94
|
buffer.puts "Request authority: #{request.authority}"
|
|
95
95
|
buffer.puts "Host authority: #{host.authority}"
|
|
96
|
-
buffer.puts "
|
|
97
|
-
buffer.puts "
|
|
96
|
+
buffer.puts "Request: #{request.method} #{request.path} #{request.version}"
|
|
97
|
+
buffer.puts "Request headers: #{request.headers.inspect}"
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
# The authority of the request must match the authority of the endpoint we are proxying to, otherwise SNI and other things won't work correctly.
|
data/lib/falcon/version.rb
CHANGED