mirror of https://gitee.com/bigwinds/arangodb
Remove procdump usage while taring archives (3.4) (#7816)
* Remove procdump usage while taring archives * Add 3.2 upgrade-data tests to oskar blacklist for 3.4 * Fix typo * Add 3.4 upgrade-data tests to oskar blacklist for 3.4
This commit is contained in:
parent
7c42430f95
commit
4ec76574dd
|
@ -0,0 +1,2 @@
|
|||
upgrade_data_3.2.*
|
||||
upgrade_data_3.4.*
|
|
@ -99,7 +99,7 @@ const unpackOldData = (engine, version, options, serverOptions) => {
|
|||
`--file=${dataFile}`,
|
||||
`--directory=${serverOptions['database.directory']}`
|
||||
];
|
||||
let unpack = pu.executeAndWait('tar', tarOptions, {}, '');
|
||||
let unpack = pu.executeAndWait('tar', tarOptions, { disableMonitor: true }, '');
|
||||
|
||||
if (unpack.status === false) {
|
||||
unpack.failed = 1;
|
||||
|
|
Loading…
Reference in New Issue