Since the change merged from https://review.openstack.org/#/c/27383/
ec2token auth no longer works, because there is a mismatch between
the config file section name and the section specified in ec2token
fixes bug #
1174673
Change-Id: I5c0465de5c023f587b677b10717ca3a08ba411b7
cfg.StrOpt('auth_uri', default=None),
cfg.StrOpt('keystone_ec2_uri', default=None)
]
-cfg.CONF.register_opts(opts, group='ec2token')
+cfg.CONF.register_opts(opts, group='ec2authtoken')
class EC2Token(wsgi.Middleware):
if name in self.conf:
return self.conf[name]
else:
- return cfg.CONF.ec2token[name]
+ return cfg.CONF.ec2authtoken[name]
@webob.dec.wsgify(RequestClass=wsgi.Request)
def __call__(self, req):