← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1848351] [NEW] glance-manage in ocata

 

Public bug reported:

.../glance/glance/cmd/manage.py

def main():
...
   CONF.set_default(name='use_stderr', default=True, enforce_type=True)
...

TypeError: set_default() got an unexpected keyword argument
'enforce_type'


 
https://github.com/openstack/glance/blob/stable/ocata/requirements.txt
https://github.com/openstack/oslo.config/blob/master/oslo_config/cfg.py
...
def set_default(self, name, default, group=None):
...

solution:
CONF.set_default(name='use_stderr', default=True)

** Affects: glance
     Importance: Undecided
         Status: New

** Summary changed:

- glance-manage
+ glance-manage in ocata

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to Glance.
https://bugs.launchpad.net/bugs/1848351

Title:
  glance-manage in ocata

Status in Glance:
  New

Bug description:
  .../glance/glance/cmd/manage.py

  def main():
  ...
     CONF.set_default(name='use_stderr', default=True, enforce_type=True)
  ...

  TypeError: set_default() got an unexpected keyword argument
  'enforce_type'

  
   
  https://github.com/openstack/glance/blob/stable/ocata/requirements.txt
  https://github.com/openstack/oslo.config/blob/master/oslo_config/cfg.py
  ...
  def set_default(self, name, default, group=None):
  ...

  solution:
  CONF.set_default(name='use_stderr', default=True)

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1848351/+subscriptions


Follow ups