From 49f40cd145d46f7724c641c899d6aa55eaaaeb13 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 22 Dec 2018 15:05:15 -0800 Subject: [PATCH] adjust help message --- weed/command/filer_copy.go | 4 ---- weed/command/upload.go | 4 ---- 2 files changed, 8 deletions(-) diff --git a/weed/command/filer_copy.go b/weed/command/filer_copy.go index 0f4f96f1b..46bf61383 100644 --- a/weed/command/filer_copy.go +++ b/weed/command/filer_copy.go @@ -60,10 +60,6 @@ var cmdCopy = &Command{ All files under the folder and subfolders will be copyed. Optional parameter "-include" allows you to specify the file name patterns. - If any file has a ".gz" extension, the content are considered gzipped already, and will be stored as is. - This can save volume server's gzipped processing and allow customizable gzip compression level. - The file name will strip out ".gz" and stored. For example, "jquery.js.gz" will be stored as "jquery.js". - If "maxMB" is set to a positive number, files larger than it would be split into chunks. `, diff --git a/weed/command/upload.go b/weed/command/upload.go index c29d2b145..f664c0e3a 100644 --- a/weed/command/upload.go +++ b/weed/command/upload.go @@ -53,10 +53,6 @@ var cmdUpload = &Command{ All files under the folder and subfolders will be uploaded, each with its own file key. Optional parameter "-include" allows you to specify the file name patterns. - If any file has a ".gz" extension, the content are considered gzipped already, and will be stored as is. - This can save volume server's gzipped processing and allow customizable gzip compression level. - The file name will strip out ".gz" and stored. For example, "jquery.js.gz" will be stored as "jquery.js". - If "maxMB" is set to a positive number, files larger than it would be split into chunks and uploaded separatedly. The list of file ids of those chunks would be stored in an additional chunk, and this additional chunk's file id would be returned.