protocol-http2 0.10.2 → 0.10.3
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/protocol/http2/framer.rb +3 -2
 - data/lib/protocol/http2/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: f1ec5cc476110471695cac2cbdc7e50119ace196862d63aef28236faa99bc328
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 8f21043f8c3ccfd2131515b7d49489d7067bc9c1a8ce179df4a17d1dba0df106
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 52006399e54c95f20e535ee913ef7a5980184ff4591b5167105f5b76b347b71ef2d93b3c09477de4a3ad1fa6daf3b5313c677fc2a30cba2d0d067a8904925725
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 2a1748c4aa8835e4566589a435e6472407f8336a82dba1300869dc5f9ecdf52ab23ac9985e2a954d18db721bd2697907aa8a4e187bda08b0b087fb593fe2fb35
         
     | 
| 
         @@ -103,8 +103,9 @@ module Protocol 
     | 
|
| 
       103 
103 
     | 
    
         
             
            				# Async.logger.debug(self, name: "write") {frame.inspect}
         
     | 
| 
       104 
104 
     | 
    
         | 
| 
       105 
105 
     | 
    
         
             
            				frame.write(@stream)
         
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
            				@stream.flush
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            				# Don't call @stream.flush here because it can cause significant contention if there is a semaphore around this method.
         
     | 
| 
      
 108 
     | 
    
         
            +
            				# @stream.flush
         
     | 
| 
       108 
109 
     | 
    
         | 
| 
       109 
110 
     | 
    
         
             
            				return frame
         
     | 
| 
       110 
111 
     | 
    
         
             
            			end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: protocol-http2
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.10. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.10.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Samuel Williams
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2019-10- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2019-10-15 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: protocol-hpack
         
     |