mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
jruby support: do not multi-assign in condition (it will not compile)
This commit is contained in:
parent
900bffb61a
commit
9673825673
@ -138,7 +138,8 @@ module HTTPX
|
||||
|
||||
def send_pending
|
||||
return if @io.closed?
|
||||
while !@write_buffer.full? && (request, args = @pending.shift)
|
||||
while !@write_buffer.full? && (req_args = @pending.shift)
|
||||
request, args = req_args
|
||||
parser.send(request, **args)
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user