From 3e83fa1dc794b3cee40bf90bab849ccd9731a47a Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Fri, 18 May 2018 00:25:35 +0300 Subject: [PATCH] [rally] Port custom plugins to use proper code Rally team moved OpenStack plugins under separate repository and in-tree code is deprecated now and will be removed soon. This patch changes several imports to use the latest available code. Change-Id: I901ceb685e75d905578135fdf9f1b08ba3ea7223 --- rally-jobs/plugins/trunk_scenario.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rally-jobs/plugins/trunk_scenario.py b/rally-jobs/plugins/trunk_scenario.py index dfff51805b4..fd543300119 100644 --- a/rally-jobs/plugins/trunk_scenario.py +++ b/rally-jobs/plugins/trunk_scenario.py @@ -12,10 +12,10 @@ # under the License. from rally.common import validation -from rally import consts -from rally.plugins.openstack import scenario -from rally.plugins.openstack.scenarios.neutron import utils from rally.task import atomic +from rally_openstack import consts +from rally_openstack import scenario +from rally_openstack.scenarios.neutron import utils """Scenarios for VLAN Aware VMs."""