mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 00:13:09 -06:00
Merged in ITPLT-2221-duplicate-slash (pull request #182)
ITPLT-2221 Remove the superfluous slash. The atl_tomcat_contextpath varible already contains a slash Approved-by: James Whitehead Approved-by: Dylan Rathbone
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
atl_autologin_cookie_age: "COOKIEAGE"
|
||||
atl_local_ipv4: "1.1.1.1"
|
||||
atl_tomcat_scheme: "http"
|
||||
atl_tomcat_contextpath: "foo"
|
||||
atl_tomcat_contextpath: "/foo"
|
||||
atl_proxy_name: "localhost"
|
||||
atl_proxy_port: "80"
|
||||
atl_db_preferredtestquery: "select 1;"
|
||||
|
||||
@@ -38,7 +38,7 @@ def test_server_file(host):
|
||||
assert f.exists
|
||||
assert f.contains('Connector port="8080"')
|
||||
assert f.contains('Server port="8005"')
|
||||
assert f.contains('<Context path="foo"')
|
||||
assert f.contains('<Context path="/foo"')
|
||||
assert f.contains('maxThreads="200"')
|
||||
assert f.contains('minSpareThreads="10"')
|
||||
assert f.contains('connectionTimeout="20000"')
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<property name="confluence.cluster.name">{{ atl_aws_stack_name }}</property>
|
||||
<property name="confluence.cluster.ttl">1</property>
|
||||
{% if atl_tomcat_contextpath is defined and atl_tomcat_contextpath != '' %}
|
||||
<property name="confluence.webapp.context.path">/{{ atl_tomcat_contextpath }}</property>
|
||||
<property name="confluence.webapp.context.path">{{ atl_tomcat_contextpath }}</property>
|
||||
{% endif %}
|
||||
|
||||
</properties>
|
||||
|
||||
Reference in New Issue
Block a user