From 6251289b8526344ff94e8fb439241087bf48ae6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Fri, 23 Dec 2016 17:23:31 +0100 Subject: [PATCH] Rising the limit for fetch (#3964) --- util/fetch/src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/fetch/src/client.rs b/util/fetch/src/client.rs index 20bbcee2f..a8ffac9ca 100644 --- a/util/fetch/src/client.rs +++ b/util/fetch/src/client.rs @@ -78,8 +78,8 @@ pub struct Client { impl Client { pub fn new() -> Result { - // Max 15MB will be downloaded. - Self::with_limit(Some(15*1024*1024)) + // Max 50MB will be downloaded. + Self::with_limit(Some(50*1024*1024)) } fn with_limit(limit: Option) -> Result {