Remove leading set from config
one of the config settings previously contained a leading set before a config setting. This does not convert to the ini file format AFAIK, so it has been changed.
This commit is contained in:
@@ -64,6 +64,7 @@ describe 'swift::proxy' do
|
||||
'bind_port = 8080',
|
||||
"workers = #{facts[:processorcount]}",
|
||||
'user = swift',
|
||||
'log_level = INFO',
|
||||
'[pipeline:main]',
|
||||
'pipeline = healthcheck cache tempauth proxy-server',
|
||||
'[app:proxy-server]',
|
||||
@@ -89,7 +90,8 @@ describe 'swift::proxy' do
|
||||
:workers => 3,
|
||||
:pipeline => ['swauth', 'proxy-server'],
|
||||
:allow_account_management => false,
|
||||
:account_autocreate => false
|
||||
:account_autocreate => false,
|
||||
:log_level => 'DEBUG'
|
||||
}
|
||||
end
|
||||
it 'should build the header file with provided values' do
|
||||
@@ -99,6 +101,7 @@ describe 'swift::proxy' do
|
||||
'bind_port = 80',
|
||||
"workers = 3",
|
||||
'user = swift',
|
||||
'log_level = DEBUG',
|
||||
'[pipeline:main]',
|
||||
'pipeline = swauth proxy-server',
|
||||
'[app:proxy-server]',
|
||||
|
@@ -7,7 +7,7 @@ bind_ip = <%= proxy_local_net_ip %>
|
||||
<% end %>
|
||||
workers = <%= workers %>
|
||||
user = swift
|
||||
set log_level = <%= log_level %>
|
||||
log_level = <%= log_level %>
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = <%= pipeline.to_a.join(' ') %>
|
||||
|
Reference in New Issue
Block a user