帮楼主找了相关资料
ConfigOpts类的__call()__方法,执行配置项的解析以及从CLI或配置文件读取配置项的值。
[mw_shl_code=python,true]class ConfigOpts(object):
def __call__(self, ...):
opts = [
MultiStrOpt('config-file',
...),
StrOpt('config-dir',
...),
]
self.register_cli_opts(opts)[/mw_shl_code]
参考这个
http://www.aboutyun.com/blog-1313-2687.html
英文资料:
http://docs.openstack.org/developer/oslo.config/
|