mieps_http-2 0.8.1 → 0.8.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/http/2/connection.rb +1 -1
- data/lib/http/2/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: 921d6bbbb701684f92d80d5c564060753ae03ff9
|
4
|
+
data.tar.gz: adc01cf72353b337d1c7fe52a181efa1ffb348f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17e0dd718a3a33bcd8523ce7e2bf23ac7563e3285f4e7c1042991b9471620d4739232a2dd781f5f43f9a0e61ffd3b84b2a24f7fe021a635269b30c607408f6d2
|
7
|
+
data.tar.gz: 9cd34e5beda9bbd3fb29e603c03ff433151656cfaaa515d309b75f59f250ed832572d99a320a7a5c37ffa03cb6db3597b38fa8a5cc164a2e1b7a92bfa7a4ab65
|
data/lib/http/2/connection.rb
CHANGED
@@ -619,7 +619,7 @@ module HTTP2
|
|
619
619
|
def activate_stream(id: nil, **args)
|
620
620
|
connection_error(msg: 'Stream ID already exists') if @streams.key?(id)
|
621
621
|
|
622
|
-
stream = Stream.new(
|
622
|
+
stream = Stream.new(self, id, {}.merge(args))
|
623
623
|
|
624
624
|
# Streams that are in the "open" state, or either of the "half closed"
|
625
625
|
# states count toward the maximum number of streams that an endpoint is
|
data/lib/http/2/version.rb
CHANGED