]> review.fuel-infra Code Review - puppet-modules/puppet-ceilometer.git/commitdiff
wsgi: fix typos in comments
authorEmilien Macchi <emilien@redhat.com>
Fri, 14 Aug 2015 15:39:22 +0000 (11:39 -0400)
committerEmilien Macchi <emilien@redhat.com>
Fri, 14 Aug 2015 19:53:22 +0000 (15:53 -0400)
Fix minor typos in comments & messages.

Change-Id: I5cf1fa9b24fa764ae27ac19a32fc14571b141741

manifests/api.pp
manifests/wsgi/apache.pp

index cc67d6f989e038a61cad9da2e0e5d9f4484dfa18..b188db777cc75f230d0b7bbb68518145a71a185f 100644 (file)
@@ -70,7 +70,7 @@
 #   If the value is 'httpd', this means ceilometer-api will be a web
 #   service, and you must use another class to configure that
 #   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'
 #
 class ceilometer::api (
@@ -138,7 +138,7 @@ class ceilometer::api (
     }
     Class['ceilometer::db'] -> Service[$service_name]
   } 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 {
index 8ddba112c66238e304b5efaed72b50a70ea2448d..ad0a3a5bff79775652f560e9ff3bfd8455403e67 100644 (file)
@@ -18,8 +18,7 @@
 # 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
-# systems as the current keystone implementation is not multi-processor aware,
-# thus limiting the performance for concurrent accesses.
+# because of limited performance for concurrent accesses when running eventlet.
 #
 # When using this class you should disable your ceilometer-api service.
 #