- Fix few problems with oslo_config: -- Register only in one place opts (rally.api module) -- Do not import opts -> it actually does nothing -- Fix the bug with registration of DEFAULT group - Imports are not fixed in this patch to check that we are not braking anything Change-Id: I96283ef33963b46e85cf8f52df91e67659528143
10 lines
270 B
Python
10 lines
270 B
Python
from rally.common import logging
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
LOG.warning("rally.osclients module moved to rally.plugins.openstack.osclients"
|
|
"rally.osclients module is going to be removed.")
|
|
|
|
|
|
from rally.plugins.openstack.osclients import * # noqa
|