Use gzip for snapshots

Shotgun has been changed to use gzip for snapshot.
On the 15G snapshot data gz is 10 times faster than xz while compression
rate is just 36% against 50% with gzip.
For the pattern "create once - download once" this looks like a
reasonable solution.

Change-Id: I133ae854c619655169f6b42003087dd9cc21b8e0
Closes-Bug: #1546023
(cherry picked from commit 18308a743c)
This commit is contained in:
Georgy Kibardin 2016-05-24 13:30:42 +03:00
parent f4475f2b0d
commit 9f02eb988b
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ RunTest() {
# Extract logs using fuel_logs utility
if [ "${FUELLOGS_TOOL}" != "no" ]; then
for logfile in $(find "${LOGS_DIR}" -name "fail*.tar.xz" -type f);
for logfile in $(find "${LOGS_DIR}" -name "fail*.tar.[gx]z" -type f);
do
./utils/jenkins/fuel_logs.py "${logfile}" > "${logfile}.filtered.log"
done