lib/async/http/protocol/http1/server.rb in async-http-0.51.5 vs lib/async/http/protocol/http1/server.rb in async-http-0.51.6
- old
+ new
@@ -54,10 +54,10 @@
raise
end
# Server loop.
def each(task: Task.current)
- task.annotate("#{version} reading requests for #{self.class}.")
+ task.annotate("Reading #{version} requests for #{self.class}.")
while request = next_request
response = yield(request, self)
return if @stream.nil? or @stream.closed?