Merge "Update revert_to_snapshot params"

This commit is contained in:
Zuul 2020-02-12 15:56:08 +00:00 committed by Gerrit Code Review
commit ed8e570e63
1 changed files with 3 additions and 3 deletions

View File

@ -129,11 +129,11 @@ class VolumeManager(volumes.VolumeManager):
"""Revert a volume to a snapshot. """Revert a volume to a snapshot.
The snapshot must be the most recent one known to cinder. The snapshot must be the most recent one known to cinder.
:param volume: volume object. :param volume: volume object or volume id.
:param snapshot: snapshot object. :param snapshot: snapshot object or snapshot id.
""" """
return self._action('revert', volume, return self._action('revert', volume,
info={'snapshot_id': base.getid(snapshot.id)}) info={'snapshot_id': base.getid(snapshot)})
@api_versions.wraps('3.12') @api_versions.wraps('3.12')
def summary(self, all_tenants): def summary(self, all_tenants):