Move rally.benchmark.scenarios.utils

This module contains only one class, which can be moved to
rally.benchmark.utils

Change-Id: Ie82c0d124f7eae90281408e655f41078e2d24e2d
This commit is contained in:
Andrey Kurilin 2015-06-05 14:01:55 +03:00
parent 9dc1e7a3d0
commit bf82c4b635

View File

@ -16,8 +16,8 @@
import jsonschema
from rally.benchmark.scenarios import base
from rally.benchmark.scenarios import utils as scenario_utils
from rally.benchmark import types as types
from rally.benchmark import utils as bench_utils
from rally.benchmark import validation
from rally.common import log as logging
from rally import consts
@ -274,7 +274,7 @@ class NovaServers(utils.NovaScenario,
def _bind_actions(self):
actions = ["hard_reboot", "soft_reboot", "stop_start",
"rescue_unrescue"]
action_builder = scenario_utils.ActionBuilder(actions)
action_builder = bench_utils.ActionBuilder(actions)
action_builder.bind_action("hard_reboot", self._reboot_server)
action_builder.bind_action("soft_reboot", self._soft_reboot_server)
action_builder.bind_action("stop_start",