~ec2-api/ec2-api/master

« back to all changes in this revision

Viewing changes to rally-scenarios/plugins/context_plugin_ec2_creds.py

  • Committer: Andrey Kurilin
  • Date: 2018-06-13 11:02:05 UTC
  • Revision ID: git-v1:e95cd8cc5e97e3ca8a688e6526bf93c5cb0775dc
Port rally plugins to use proper modules

Sometime ago, all OpenStack related stuff moved from the main repository
to the separate one - https://github.com/openstack/rally-openstack .
All further development and maintance will be done only in a new
repository. As for first major release, the structure is not changed, so
only imports should be changed.

Depends-On: I3446ccd5a36cb686282e85a9ea210d1723da1fef
Change-Id: Ied6b0693ba2e050b0d5f5bae91fed25891ae9882

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
from rally.common.i18n import _
17
17
from rally.common import logging
18
18
from rally.common import utils as rutils
19
 
from rally import consts
20
 
from rally import osclients
21
 
from rally.plugins.openstack.wrappers import network as network_wrapper
22
19
from rally.task import context
 
20
from rally_openstack import consts
 
21
from rally_openstack import osclients
 
22
from rally_openstack.wrappers import network as network_wrapper
23
23
 
24
24
 
25
25
LOG = logging.getLogger(__name__)