Reviewed: https://review.openstack.org/50939 Committed: http://github.com/openstack/nova/commit/d120cedb4e5b9ab055e0f47562eb461e0805daba Submitter: Jenkins Branch: milestone-proposed
commit d120cedb4e5b9ab055e0f47562eb461e0805daba Author: Arata Notsu <no...@virtualtech.jp> Date: Tue Oct 8 13:18:04 2013 +0900 Correct use of ConfigFilesNotFoundError ConfigFilesNotFoundError.__init__() takes "config_files", not "path". And pass the config value itself rather than the result of find_file(), which is always None. Change-Id: Ia5285d252d5636892c4fbeb9191a6c7ed4923b78 Closes-Bug: 1236176 (cherry picked from commit 84b02ca1d54fd058c68345068832e84d2f80b9a5) ** Changed in: nova Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Compute (nova). https://bugs.launchpad.net/bugs/1236176 Title: Bad parameter to ConfigFilesNotFoundError Status in OpenStack Compute (Nova): Fix Released Bug description: In nova/cells/state.py, ConfigFilesNotFoundError created as below: raise cfg.ConfigFilesNotFoundError(path=config_path) However ConfigFilesNotFoundError.__init__() is defined as below: def __init__(self, config_files): self.config_files = config_files So it fails. To manage notifications about this bug go to: https://bugs.launchpad.net/nova/+bug/1236176/+subscriptions -- Mailing list: https://launchpad.net/~yahoo-eng-team Post to : yahoo-eng-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~yahoo-eng-team More help : https://help.launchpad.net/ListHelp