summaryrefslogtreecommitdiffstats
path: root/src/helpers.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers.cr')
-rw-r--r--src/helpers.cr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers.cr b/src/helpers.cr
index d0b6feec..eeda239a 100644
--- a/src/helpers.cr
+++ b/src/helpers.cr
@@ -252,8 +252,8 @@ end
def make_client(url, context)
client = HTTP::Client.new(url, context)
- client.read_timeout = 10.seconds
- client.connect_timeout = 10.seconds
+ client.read_timeout = 30.seconds
+ client.connect_timeout = 30.seconds
return client
end