mirror of
https://github.com/iv-org/invidious.git
synced 2025-01-10 03:20:35 +05:30
Pool: Refactor logic for request methods
Make non-block request method internally call the block based request method.
This commit is contained in:
parent
621c6abfe6
commit
aab9719e25
@ -25,7 +25,7 @@ module Invidious::ConnectionPool
|
||||
end
|
||||
|
||||
{% for method in %w[get post put patch delete head options] %}
|
||||
def {{method.id}}(*args, **kwargs)
|
||||
def {{method.id}}(*args, **kwargs, &)
|
||||
self.client do | client |
|
||||
client.{{method.id}}(*args, **kwargs) do | response |
|
||||
|
||||
@ -39,12 +39,10 @@ module Invidious::ConnectionPool
|
||||
end
|
||||
|
||||
def {{method.id}}(*args, **kwargs)
|
||||
self.client do | client |
|
||||
return response = client.{{method.id}}(*args, **kwargs)
|
||||
{{method.id}}(*args, **kwargs) do | response |
|
||||
return response
|
||||
ensure
|
||||
if response
|
||||
response.body_io?.try &. skip_to_end
|
||||
end
|
||||
response.body_io?.try &. skip_to_end
|
||||
end
|
||||
end
|
||||
{% end %}
|
||||
|
Loading…
Reference in New Issue
Block a user