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',
|
'bind_port = 8080',
|
||||||
"workers = #{facts[:processorcount]}",
|
"workers = #{facts[:processorcount]}",
|
||||||
'user = swift',
|
'user = swift',
|
||||||
|
'log_level = INFO',
|
||||||
'[pipeline:main]',
|
'[pipeline:main]',
|
||||||
'pipeline = healthcheck cache tempauth proxy-server',
|
'pipeline = healthcheck cache tempauth proxy-server',
|
||||||
'[app:proxy-server]',
|
'[app:proxy-server]',
|
||||||
@@ -89,7 +90,8 @@ describe 'swift::proxy' do
|
|||||||
:workers => 3,
|
:workers => 3,
|
||||||
:pipeline => ['swauth', 'proxy-server'],
|
:pipeline => ['swauth', 'proxy-server'],
|
||||||
:allow_account_management => false,
|
:allow_account_management => false,
|
||||||
:account_autocreate => false
|
:account_autocreate => false,
|
||||||
|
:log_level => 'DEBUG'
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
it 'should build the header file with provided values' do
|
it 'should build the header file with provided values' do
|
||||||
@@ -99,6 +101,7 @@ describe 'swift::proxy' do
|
|||||||
'bind_port = 80',
|
'bind_port = 80',
|
||||||
"workers = 3",
|
"workers = 3",
|
||||||
'user = swift',
|
'user = swift',
|
||||||
|
'log_level = DEBUG',
|
||||||
'[pipeline:main]',
|
'[pipeline:main]',
|
||||||
'pipeline = swauth proxy-server',
|
'pipeline = swauth proxy-server',
|
||||||
'[app:proxy-server]',
|
'[app:proxy-server]',
|
||||||
|
@@ -7,7 +7,7 @@ bind_ip = <%= proxy_local_net_ip %>
|
|||||||
<% end %>
|
<% end %>
|
||||||
workers = <%= workers %>
|
workers = <%= workers %>
|
||||||
user = swift
|
user = swift
|
||||||
set log_level = <%= log_level %>
|
log_level = <%= log_level %>
|
||||||
|
|
||||||
[pipeline:main]
|
[pipeline:main]
|
||||||
pipeline = <%= pipeline.to_a.join(' ') %>
|
pipeline = <%= pipeline.to_a.join(' ') %>
|
||||||
|
Reference in New Issue
Block a user