Comment 5 for bug 888448

Revision history for this message
Yogeshwar (yogesh-srikrishnan) wrote :

Also where did u change keystone or the middleware??
Did u see the auth_token.py changes?
This is how validate token looks

{
    "access":{
        "token":{
            "expires":"2012-02-05T00:00:00",
            "id":"887665443383838",
            "tenant":{
                "id":"1",
                "name":"customer-x"
            }
        },
        "user":{
            "roles":[{
                    "serviceId":"1",
                    "id":"3",
                    "name":"Member"
                }
            ],
            "tenantId":"1",
            "id":"1",
            "tenantName":"customer-x",
            "name":"joeuser" ===============> Returning name.
        }
    }
}

I tested the middleware with our echo service.That also is fine.
Did u try whatever in code base after the latest commit?