import: bump image size safety limit for machinectl pull (#5535)

We currenly use 40GB images in our environment
This commit is contained in:
Dax Kelson 2017-03-05 05:03:53 -07:00 committed by Martin Pitt
parent bf1c790c8f
commit 055c521ad4
1 changed files with 1 additions and 1 deletions

View File

@ -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)