0
0
Fork 0

Fix Ruby 2.7 support (#12831)

- update http gem to avoid errors
- update blurhash gem to avoid shared object loading error
- update goldfinger gem so the http gem could be updated
- update json gem to avoid warnings
This commit is contained in:
ThibG 2020-01-12 15:49:30 +01:00 committed by Eugen Rochko
parent a369d1ca64
commit 24cd2126c6
3 changed files with 17 additions and 12 deletions

View file

@ -96,7 +96,7 @@ class Request
end
def http_client
HTTP.use(:auto_inflate).timeout(:per_operation, TIMEOUT.dup).follow(max_hops: 2)
HTTP.use(:auto_inflate).timeout(TIMEOUT.dup).follow(max_hops: 2)
end
end