We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60a28e3 commit 9bd4644Copy full SHA for 9bd4644
lib/protocol/http2/flow_control.rb
@@ -84,7 +84,7 @@ def send_window_update(window_increment)
84
def receive_window_update(frame)
85
amount = frame.unpack
86
87
- # puts "expanding remote_window=#{@remote_window} by #{amount}"
+ # Async.logger.info(self) {"expanding remote_window=#{@remote_window} by #{amount}"}
88
89
if amount != 0
90
@remote_window.expand(amount)
lib/protocol/http2/framer.rb
@@ -103,7 +103,7 @@ def write_frame(frame)
103
# Async.logger.debug(self, name: "write") {frame.inspect}
104
105
frame.write(@stream)
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
109
0 commit comments