Activity log for bug #1508374

Date Who What changed Old value New value Message
2015-10-21 09:19:44 ZhiQiang Fan bug added bug
2015-10-30 06:21:03 Jude Augustine Job python-keystoneclient: assignee Jude Augustine Job (judeaugustine-j)
2015-10-30 06:53:17 Jude Augustine Job python-keystoneclient: status New In Progress
2015-11-03 09:09:36 Jude Augustine Job description from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c = client.Client(session=s) # succeed #print c.users.list() # print None! print c.tenant_name # raise attr exception, even though httpclient has defined this property print c.service_catalog the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last): File "/tmp/test.py", line 16, in <module> print c.service_catalog File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__ raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c1 = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c2 = client.Client(session=s) #print c2.users.list() # succeed print c.tenant_name # print None! print c.service_catalog # raise attr exception, # even though httpclient has defined this property """ the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last):   File "/tmp/test.py", line 16, in <module>     print c.service_catalog   File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__     raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen """
2015-11-03 09:09:51 Jude Augustine Job description from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c1 = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c2 = client.Client(session=s) #print c2.users.list() # succeed print c.tenant_name # print None! print c.service_catalog # raise attr exception, # even though httpclient has defined this property """ the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last):   File "/tmp/test.py", line 16, in <module>     print c.service_catalog   File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__     raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen """ from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c1 = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c2 = client.Client(session=s) #print c2.users.list() # succeed print c2.tenant_name # print None! print c2.service_catalog # raise attr exception,                          # even though httpclient has defined this property """ the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last):   File "/tmp/test.py", line 16, in <module>     print c.service_catalog   File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__     raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen """
2015-11-27 05:51:06 Steve Martinelli python-keystoneclient: assignee Jude Augustine Job (judeaugustine-j)
2015-11-27 05:51:20 Steve Martinelli python-keystoneclient: importance Undecided Medium
2015-11-27 09:10:01 Boris Bobrov python-keystoneclient: status In Progress Confirmed
2016-01-04 06:37:24 Jude Augustine Job description from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c1 = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c2 = client.Client(session=s) #print c2.users.list() # succeed print c2.tenant_name # print None! print c2.service_catalog # raise attr exception,                          # even though httpclient has defined this property """ the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last):   File "/tmp/test.py", line 16, in <module>     print c.service_catalog   File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__     raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen """ from keystoneclient.v2_0 import client from keystoneclient import session from keystoneclient.auth.identity import v2 as v2_auth c1 = client.Client(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) print c1.service_catalog auth = v2_auth.Password(auth_url='http://127.0.0.1:5000/v2.0',username='admin',password='admin',tenant_name='admin',) s = session.Session(auth=auth, verify=False) c2 = client.Client(session=s) #print c2.users.list() # succeed print c2.tenant_name # print None! print c2.service_catalog # raise attr exception,                          # even though httpclient has defined this property """ the output is: <keystoneclient.service_catalog.ServiceCatalogV2 object at 0x7f77cb6e92d0> None Traceback (most recent call last):   File "/tmp/test.py", line 16, in <module>     print c.service_catalog   File "/usr/local/lib/python2.7/dist-packages/keystoneclient/httpclient.py", line 898, in __getattr__     raise AttributeError(_("Unknown Attribute: %s") % name) AttributeError: Unknown Attribute: service_catalog the service_catalog property has gone, I have no idea why and how this happen """
2016-01-04 07:27:13 Jude Augustine Job python-keystoneclient: assignee Jude Augustine Job (judeaugustine-j)
2016-02-01 09:32:37 Jude Augustine Job python-keystoneclient: assignee Jude Augustine Job (judeaugustine-j)
2016-03-02 13:00:04 Sirisha python-keystoneclient: assignee Sirisha (sirisha-1)
2016-04-12 06:34:12 Sirisha python-keystoneclient: assignee Sirisha (sirisha-1)
2016-06-03 05:47:59 Sam Morrison bug added subscriber Sam Morrison
2016-07-07 17:20:30 OpenStack Infra python-keystoneclient: status Confirmed In Progress
2016-07-07 17:20:30 OpenStack Infra python-keystoneclient: assignee Mikhail Nikolaenko (mnikolaenko)
2016-12-01 00:08:47 OpenStack Infra python-keystoneclient: status In Progress Fix Released
2017-11-07 10:02:10 Yan E Li bug added subscriber Yan E Li
2017-11-21 21:51:48 Lance Bragstad tags office-hours
2017-11-22 01:21:40 ZhiQiang Fan removed subscriber ZhiQiang Fan