diff options
author | Ildiko Vancsa <ildiko.vancsa@ericsson.com> | 2014-06-09 18:13:04 +0200 |
---|---|---|
committer | Ildiko <ildiko.vancsa@ericsson.com> | 2014-06-16 09:00:15 +0200 |
commit | 702d99937edce9f42fff834db1aed26881a293b4 (patch) | |
tree | 69c8c57916553acb9215a5bce085151ac27f1bf0 /ceilometer/publisher | |
parent | 3efe03b60a053a99c6ec6ffde0c22b69d6f0345b (diff) | |
download | ceilometer-702d99937edce9f42fff834db1aed26881a293b4.tar.gz |
Fix list of modules not included in auto-gen docs
The variable for excluding modules should be a sequence of strings.
Turn the current value from a string to a tuple so documentation
for our source is generated.
The errors and warnings were fixed in the docstrings in the source code
otherwise the doc generation would fail.
The following files were excluded from the doc build because of
non-existing imports:
'ceilometer.compute.nova_notifier'
http://bit.ly/remove-nova-notifier-bp
'ceilometer.openstack.common.db.sqlalchemy.session'
https://review.openstack.org/#/c/97850/
'ceilometer.openstack.common.middleware.audit'
'ceilometer.openstack.common.middleware.notifier'
https://bugs.launchpad.net/ceilometer/+bug/1327084
'ceilometer.openstack.common.log_handler'
https://bugs.launchpad.net/ceilometer/+bug/1327076
These failed imports are registered in one blueprint and two bug reports.
Change-Id: If0bc1c8fc96ba513bbeb90d5257e40b7621a8473
Diffstat (limited to 'ceilometer/publisher')
-rw-r--r-- | ceilometer/publisher/file.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ceilometer/publisher/file.py b/ceilometer/publisher/file.py index d0edcfa1..7b8baf27 100644 --- a/ceilometer/publisher/file.py +++ b/ceilometer/publisher/file.py @@ -34,8 +34,9 @@ class FilePublisher(publisher.PublisherBase): If a file name and location is not specified, this File Publisher will not log any meters other than log a warning in Ceilometer log file. - To enable this publisher, add the following section to file - /etc/ceilometer/publisher.yaml or simply add it to an existing pipeline. + To enable this publisher, add the following section to the + /etc/ceilometer/publisher.yaml file or simply add it to an existing + pipeline:: - name: meter_file |