Files
deb-cinder/cinder/scheduler/host_manager.py
John Griffith 28df9f3de8 Revert "Implement filter scheduler"
This reverts commit 8dd2140c4c
2013-01-09 23:55:26 +00:00

37 lines
996 B
Python

# Copyright (c) 2011 OpenStack, LLC.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""
Manage hosts in the current zone.
"""
# FIXME(ja): this code was written only for compute. re-implement for volumes
class HostState(object):
pass
class HostManager(object):
def get_host_list(self, *args):
pass
def update_service_capabilities(self, *args):
pass
def get_service_capabilities(self, *args):
pass