Rename the Snapshot task into SnapshotCreation

This commit is contained in:
Kerollmops 2022-10-25 10:44:58 +02:00 committed by Clément Renault
parent 4d43a9f5b1
commit e0548e42e7
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
6 changed files with 24 additions and 19 deletions

View file

@ -129,7 +129,7 @@ pub enum KindDump {
keys: Vec<Key>,
instance_uid: Option<InstanceUid>,
},
Snapshot,
SnapshotCreation,
}
impl From<Task> for TaskDump {
@ -191,7 +191,7 @@ impl From<KindWithContent> for KindDump {
KindWithContent::DumpCreation { dump_uid, keys, instance_uid } => {
KindDump::DumpCreation { dump_uid, keys, instance_uid }
}
KindWithContent::Snapshot => KindDump::Snapshot,
KindWithContent::SnapshotCreation => KindDump::SnapshotCreation,
}
}
}