f5f0737829
Most notably this commit fixes #1419501 that caused mock traceback when running with --new-chroot. Resolves: #1419501
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From bd9bb2324adf9e16cdf4e6c3588ddc7778530fd8 Mon Sep 17 00:00:00 2001
|
|
From: Dax Kelson <dkelson@gurulabs.com>
|
|
Date: Sun, 5 Mar 2017 05:03:53 -0700
|
|
Subject: [PATCH] import: bump image size safety limit for machinectl pull
|
|
(#5535)
|
|
|
|
We currenly use 40GB images in our environment
|
|
(cherry picked from commit 055c521ad4e9d2f923e9373ac12e214a1e896cc7)
|
|
---
|
|
src/import/pull-job.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/import/pull-job.c b/src/import/pull-job.c
|
|
index e550df2..70aaa5c 100644
|
|
--- a/src/import/pull-job.c
|
|
+++ b/src/import/pull-job.c
|
|
@@ -527,7 +527,7 @@ int pull_job_new(PullJob **ret, const char *url, CurlGlue *glue, void *userdata)
|
|
j->glue = glue;
|
|
j->content_length = (uint64_t) -1;
|
|
j->start_usec = now(CLOCK_MONOTONIC);
|
|
- j->compressed_max = j->uncompressed_max = 8LLU * 1024LLU * 1024LLU * 1024LLU; /* 8GB */
|
|
+ j->compressed_max = j->uncompressed_max = 64LLU * 1024LLU * 1024LLU * 1024LLU; /* 64GB safety limit */
|
|
|
|
j->url = strdup(url);
|
|
if (!j->url)
|
|
--
|
|
2.9.3
|
|
|