mieps_http-2 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12cabee18dd27e15ac25ad6534d51e652eaeb05e
4
- data.tar.gz: 56280b3c2194adb912c885816c488d4a6557ed19
3
+ metadata.gz: 921d6bbbb701684f92d80d5c564060753ae03ff9
4
+ data.tar.gz: adc01cf72353b337d1c7fe52a181efa1ffb348f5
5
5
  SHA512:
6
- metadata.gz: 918d8dc416871a316dd6b57e65e197ed619999e1b0e17d89fee7d53974ae0f3e584aa9c25f238338d06ad76b4c65809ab300aff7762a6b186c0e7b831d3341f0
7
- data.tar.gz: 2c1ce4a134be10848f7b02e10f0658415466e24f46f2b008e5f882aec7a53a0ba0ba5a533b28271deb5fff4ec53c7b123dea2ef6f4d90b06ca79fd2e98fa3930
6
+ metadata.gz: 17e0dd718a3a33bcd8523ce7e2bf23ac7563e3285f4e7c1042991b9471620d4739232a2dd781f5f43f9a0e61ffd3b84b2a24f7fe021a635269b30c607408f6d2
7
+ data.tar.gz: 9cd34e5beda9bbd3fb29e603c03ff433151656cfaaa515d309b75f59f250ed832572d99a320a7a5c37ffa03cb6db3597b38fa8a5cc164a2e1b7a92bfa7a4ab65
@@ -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({ connection: self, id: id }.merge(args))
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
@@ -1,3 +1,3 @@
1
1
  module HTTP2
2
- VERSION = '0.8.1'.freeze
2
+ VERSION = '0.8.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mieps_http-2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Grigorik