wsgi: fix typos in comments

Fix minor typos in comments & messages.

Change-Id: I5cf1fa9b24fa764ae27ac19a32fc14571b141741
This commit is contained in:
Emilien Macchi
2015-08-14 11:39:22 -04:00
parent 257a60ce79
commit a0fe2020da
2 changed files with 3 additions and 4 deletions

View File

@@ -70,7 +70,7 @@
# If the value is 'httpd', this means ceilometer-api will be a web # If the value is 'httpd', this means ceilometer-api will be a web
# service, and you must use another class to configure that # service, and you must use another class to configure that
# web service. For example, use class { 'ceilometer::wsgi::apache'...} # web service. For example, use class { 'ceilometer::wsgi::apache'...}
# to make keystone be a web app using apache mod_wsgi. # to make ceilometer-api be a web app using apache mod_wsgi.
# Defaults to '$::ceilometer::params::api_service_name' # Defaults to '$::ceilometer::params::api_service_name'
# #
class ceilometer::api ( class ceilometer::api (
@@ -138,7 +138,7 @@ class ceilometer::api (
} }
Class['ceilometer::db'] -> Service[$service_name] Class['ceilometer::db'] -> Service[$service_name]
} else { } else {
fail('Invalid service_name. Either keystone/openstack-ceilometer-api for running as a standalone service, or httpd for being run by a httpd server') fail('Invalid service_name. Either ceilometer/openstack-ceilometer-api for running as a standalone service, or httpd for being run by a httpd server')
} }
ceilometer_config { ceilometer_config {

View File

@@ -18,8 +18,7 @@
# Class to serve Ceilometer API with apache mod_wsgi in place of ceilometer-api service. # Class to serve Ceilometer API with apache mod_wsgi in place of ceilometer-api service.
# #
# Serving Ceilometer API from apache is the recommended way to go for production # Serving Ceilometer API from apache is the recommended way to go for production
# systems as the current keystone implementation is not multi-processor aware, # because of limited performance for concurrent accesses when running eventlet.
# thus limiting the performance for concurrent accesses.
# #
# When using this class you should disable your ceilometer-api service. # When using this class you should disable your ceilometer-api service.
# #