diff options
author | Davanum Srinivas <dims@linux.vnet.ibm.com> | 2014-07-30 14:40:43 -0700 |
---|---|---|
committer | Davanum Srinivas <dims@linux.vnet.ibm.com> | 2014-10-06 21:41:17 -0400 |
commit | 323fa6fef7e92a2bded1f7da37b8dfc98f8af1e0 (patch) | |
tree | d086b8e62af819555bb50eb69e390f7b0849cef3 /nova/scheduler/ironic_host_manager.py | |
parent | 97f60c138c6a0cc8c28ae71099b5cc31a9332ca8 (diff) | |
download | nova-323fa6fef7e92a2bded1f7da37b8dfc98f8af1e0.tar.gz |
Use oslo.utils
oslo.utils library now provides the functionality previously in
oslo-incubator's excutils, importutils, network_utils, strutils
timeutils, units etc. Some modules already moved to oslo.utils
will still be around since other code in nova/openstack/common/
are using it and will be removed in a subsequent commit.
Change-Id: Idc716342535fdfa680963e0e073ddb46f5f1eb34
Diffstat (limited to 'nova/scheduler/ironic_host_manager.py')
-rw-r--r-- | nova/scheduler/ironic_host_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/scheduler/ironic_host_manager.py b/nova/scheduler/ironic_host_manager.py index e20facd3e9..7ece982f86 100644 --- a/nova/scheduler/ironic_host_manager.py +++ b/nova/scheduler/ironic_host_manager.py @@ -22,10 +22,10 @@ ram from a host / node as it is supporting Baremetal hosts, which can not be subdivided into multiple instances. """ from oslo.config import cfg +from oslo.utils import timeutils from nova.openstack.common import jsonutils from nova.openstack.common import log as logging -from nova.openstack.common import timeutils import nova.scheduler.base_baremetal_host_manager as bbhm from nova.scheduler import host_manager |