Plugin supports now Disaster recovery jobs
This commit is contained in:
parent
823879e9f9
commit
2fa081a4ba
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user