Add deleteConcurrency setting

This commit is contained in:
Girish Ramakrishnan
2020-08-11 09:14:09 -07:00
parent 05026771e1
commit df6e3eb1e6
3 changed files with 6 additions and 2 deletions

View File

@@ -437,7 +437,7 @@ function setBackupCredentials(credentials, callback) {
if (error) return callback(error);
// preserve these fields
const extra = _.pick(currentConfig, 'retentionPolicy', 'schedulePattern', 'copyConcurrency', 'syncConcurrency', 'memoryLimit', 'downloadConcurrency');
const extra = _.pick(currentConfig, 'retentionPolicy', 'schedulePattern', 'copyConcurrency', 'syncConcurrency', 'memoryLimit', 'downloadConcurrency', 'deleteConcurrency');
const backupConfig = _.extend({}, credentials, extra);