Hi Guys,

I found what seems to be a bug in the tempest/scenario/manager.py module in 
Tempest.

In the "credentials" classmethod definition for the "OrchestrationScenarioTest" 
class (Line 637),

    @classmethod
    def credentials(cls):
        username = cls.config.identity.admin_username
        password = cls.config.identity.admin_password
        tenant_name = cls.config.identity.tenant_name
        return username, tenant_name, password

Looks like the following line:

tenant_name = cls.config.identity.tenant_name

Should be replaced by this one:

tenant_name = cls.config.identity.admin_tenant_name

Right now the script is trying to use the admin username and password with the 
wrong tenant name (a non admin one).
Should I open a bug for this? If so, can somebody instruct me how to do this?

Best Regards / Saludos!

Castulo J. Martinez
ISTQB Test Manager
QA Engineer | Q1st team @GDC
Intel | Security Engineering and Cloud Integration (SECI)
Office: +52.33.2282.4083 | iNet: 8286-4083
P Before printing consider your Environmental Responsibility!

_______________________________________________
OpenStack-dev mailing list
[email protected]
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

Reply via email to