diff options
author | Christian Schwede <cschwede@redhat.com> | 2016-10-28 13:23:32 +0200 |
---|---|---|
committer | Christian Schwede <cschwede@redhat.com> | 2016-10-28 13:33:31 +0200 |
commit | 38fe61be95a0efbce32202f708f5bf2b1fe5b8e4 (patch) | |
tree | 504136df6ca8baa06720cb20040132b77016a7af | |
parent | e60c5377fb4b6dd96a8415b03e88005b3eab603c (diff) |
Fix Swift proxy pipeline ordering
The Ceilometer middleware is in the wrong place; actually any middleware
should be deployed after catch_errors to catch any errors that would
otherwise crash the proxy service. Additionally the ceilometer
middleware should be deployed after any authentication middleware.
Closes-Bug: 1637471
Co-Authored-By: Thiago da Silva <thiago@redhat.com>
Change-Id: I710ff2f51271a78582fa502e7eecfa687800c664
-rw-r--r-- | puppet/services/swift-proxy.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/services/swift-proxy.yaml b/puppet/services/swift-proxy.yaml index de8daea5..35e21181 100644 --- a/puppet/services/swift-proxy.yaml +++ b/puppet/services/swift-proxy.yaml @@ -88,7 +88,6 @@ outputs: - ResellerAdmin swift::proxy::versioned_writes::allow_versioned_writes: true swift::proxy::pipeline: - - 'ceilometer' - 'catch_errors' - 'healthcheck' - 'proxy-logging' @@ -101,6 +100,7 @@ outputs: - 'keystone' - 'staticweb' - 'versioned_writes' + - 'ceilometer' - 'proxy-logging' - 'proxy-server' swift::proxy::account_autocreate: true |