Plugin supports now Disaster recovery jobs

This commit is contained in:
wescoeur 2015-11-26 15:47:25 +01:00
parent 823879e9f9
commit 2fa081a4ba

View File

@ -50,8 +50,10 @@ class BackupReportsXoPlugin {
const text = []
forEach(status.calls, call => {
// Ignore call if it's not a Backup or a Snapshot.
if (call.method !== 'vm.rollingBackup' && call.method !== 'vm.rollingSnapshot') {
// Ignore call if it's not a Backup a Snapshot or a Disaster Recovery.
if (call.method !== 'vm.rollingBackup' &&
call.method !== 'vm.rollingSnapshot' &&
call.method !== 'vm.rollingDrCopy') {
return
}