commit | cc79a53192de73457cb4c8c3350d896d952bb106 | [log] [tgz] |
---|---|---|
author | Gunnar Mills <gmills@us.ibm.com> | Tue Nov 30 19:33:42 2021 -0600 |
committer | Dixsie Wolmers <dixsiew@gmail.com> | Wed Dec 01 20:15:21 2021 +0000 |
tree | 39d00bb8192552fe53496751b6fea98209610b77 | |
parent | b98a133e39e15be179779ae9b7745bbc093b17a4 [diff] |
Correct Dump file extension BMC Dump which is implemented in phosphor-debug-collector uses ".tar.xz" https://github.com/openbmc/phosphor-debug-collector/search?q=.tar.xz The Dump page was incorrectly exporting as tar.gz. Fix this. Change-Id: Id0b64a6e0ae92254484170a77e28a01f78c8d368 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/src/views/Logs/Dumps/Dumps.vue b/src/views/Logs/Dumps/Dumps.vue index 00bbf7f..f4f6451 100644 --- a/src/views/Logs/Dumps/Dumps.vue +++ b/src/views/Logs/Dumps/Dumps.vue
@@ -363,7 +363,7 @@ } }, exportFileName(row) { - let filename = row.item.dumpType + '_' + row.item.id + '.tar.gz'; + let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz'; filename = filename.replace(RegExp(' ', 'g'), '_'); return filename; },