Skip to content

Commit 26139dd

Browse files
committed
[GH-6] Add TransferVD base, fix version number
1 parent 91c0e2b commit 26139dd

11 files changed

Lines changed: 16 additions & 14 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ distributed Python package
2222
Version
2323
-------
2424

25-
0.4.2
25+
0.4.3
2626

2727
Prerequisites
2828
-------------

cinder/tests/unit/volume/drivers/dell_emc/unity/fake_exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/tests/unit/volume/drivers/dell_emc/unity/test_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/tests/unit/volume/drivers/dell_emc/unity/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/tests/unit/volume/drivers/dell_emc/unity/test_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/tests/unit/volume/drivers/dell_emc/unity/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/volume/drivers/dell_emc/unity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/volume/drivers/dell_emc/unity/adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/volume/drivers/dell_emc/unity/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may

cinder/volume/drivers/dell_emc/unity/driver.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 Dell Inc. or its subsidiaries.
1+
# Copyright (c) 2017 Dell Inc. or its subsidiaries.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -46,16 +46,18 @@
4646
CONF.register_opts(UNITY_OPTS)
4747

4848

49-
class UnityDriver(driver.ManageableVD,
49+
class UnityDriver(driver.TransferVD,
50+
driver.ManageableVD,
5051
driver.ManageableSnapshotsVD,
5152
driver.BaseVD):
5253
"""Unity Driver.
5354
5455
Version history:
55-
1.0.0 - Initial version
56+
00.04.03 - Add TransferVD to base, and fix version number
57+
00.04.02 - Initial version
5658
"""
5759

58-
VERSION = '01.00.00'
60+
VERSION = '00.04.03'
5961
VENDOR = 'Dell EMC'
6062
# ThirdPartySystems wiki page
6163
CI_WIKI_NAME = "EMC_UNITY_CI"

0 commit comments

Comments
 (0)