Merge "connection should be secured in log"

This commit is contained in:
Jenkins 2016-12-30 08:40:50 +00:00 committed by Gerrit Code Review
commit 0be17c1420
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ describe 'oslo::db' do
it 'configures database parameters' do
is_expected.to contain_keystone_config('database/backend').with_value('sqlalchemy')
is_expected.to contain_keystone_config('database/connection').with_value('mysql+pymysql://db:db@localhost/db')
is_expected.to contain_keystone_config('database/connection').with_value('mysql+pymysql://db:db@localhost/db').with_secret(true)
is_expected.to contain_keystone_config('database/mysql_sql_mode').with_value('TRADITIONAL')
is_expected.to contain_keystone_config('database/idle_timeout').with_value('3601')
is_expected.to contain_keystone_config('database/min_pool_size').with_value('2')