Fix chunked backup driver interface name

Chunked backup driver interface is wrongly named as
BackupDriverWithVerify. This patch renames it to
BackupChunkedDriver.

Change-Id: If0bdea9ac5ee9e38ab67e18f3ac517ccd3b010da
This commit is contained in:
Vipin Balachandran 2016-07-15 16:23:56 +05:30
parent 5c40bf9225
commit 51a03d5ca0
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ Backup driver with 'chunked' backup operations.
from cinder.interface import backup_driver
class BackupDriverWithVerify(backup_driver.BackupDriver):
class BackupChunkedDriver(backup_driver.BackupDriver):
"""Backup driver that supports 'chunked' backups."""
def put_container(self, container):