Remove the temporal logic to fix barbican_api pipeline

The old wrong value should be fixed when the deployment is updated to
stable/yoga, and the logic is no longer used in stable/zed and later.

Related-Bug: #1946378
Change-Id: I699847c127e5890857446585ededc9d860b0dc78
This commit is contained in:
Takashi Kajinami 2022-08-20 12:08:06 +09:00
parent 577a44a522
commit 5d4084a951
2 changed files with 0 additions and 12 deletions

View File

@ -403,13 +403,6 @@ class barbican::api (
'secretstore/stores_lookup_suffix': value => $enabled_secret_stores;
}
# TODO(tkajinam): Make sure the barbican_api pipeline is reset from the wrong
# value defined because of bug 1946378.
# This logic should be removed after Yoga cycle
barbican_api_paste_ini {
'pipeline:barbican_api/pipeline': value => 'cors http_proxy_to_wsgi unauthenticated-context apiapp';
}
# keystone config
if $auth_strategy == 'keystone' {
include barbican::keystone::authtoken

View File

@ -203,11 +203,6 @@ describe 'barbican::api' do
is_expected.to contain_barbican_config('secretstore/enable_multiple_secret_stores') \
.with_value(param_hash[:multiple_secret_stores_enabled])
end
it 'resets the barbican_api pipeline' do
is_expected.to contain_barbican_api_paste_ini('pipeline:barbican_api/pipeline')\
.with_value('cors http_proxy_to_wsgi unauthenticated-context apiapp')
end
end
end