summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/volume/manager.py4
-rw-r--r--nova/vsa/api.py6
2 files changed, 6 insertions, 4 deletions
diff --git a/nova/volume/manager.py b/nova/volume/manager.py
index 63656d485..caa5298d4 100644
--- a/nova/volume/manager.py
+++ b/nova/volume/manager.py
@@ -93,10 +93,6 @@ class VolumeManager(manager.SchedulerDependentManager):
else:
LOG.info(_("volume %s: skipping export"), volume['name'])
- def create_volumes(self, context, request_spec, availability_zone):
- LOG.info(_("create_volumes called with req=%(request_spec)s, "\
- "availability_zone=%(availability_zone)s"), locals())
-
def create_volume(self, context, volume_id, snapshot_id=None):
"""Creates and exports the volume."""
context = context.elevated()
diff --git a/nova/vsa/api.py b/nova/vsa/api.py
index b279255d7..18cf13705 100644
--- a/nova/vsa/api.py
+++ b/nova/vsa/api.py
@@ -17,6 +17,10 @@
"""
Handles all requests relating to Virtual Storage Arrays (VSAs).
+
+Experimental code. Requires special VSA image.
+For assistance and guidelines pls contact
+ Zadara Storage Inc & Openstack community
"""
import sys
@@ -142,6 +146,8 @@ class API(base.Base):
For shared storage disks split into partitions
"""
+ LOG.info(_("*** Experimental VSA code ***"))
+
if vc_count > FLAGS.max_vcs_in_vsa:
LOG.warning(_("Requested number of VCs (%d) is too high."\
" Setting to default"), vc_count)