[jboss-jira] [JBoss JIRA] (WFLY-5231) [Migration operation] [Web to Undertow] Web - access-log and its directory attributes are not migrated
Radim Hatlapatka (JIRA)
issues at jboss.org
Fri Aug 28 10:01:06 EDT 2015
Radim Hatlapatka created WFLY-5231:
--------------------------------------
Summary: [Migration operation] [Web to Undertow] Web - access-log and its directory attributes are not migrated
Key: WFLY-5231
URL: https://issues.jboss.org/browse/WFLY-5231
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Reporter: Radim Hatlapatka
Assignee: Stuart Douglas
Priority: Critical
When migrating access-log via {{:migrate}} and access-log contains directory definition, the properties {{relative-to}} and {{path}} are not migrated.
Web subsystem snippet:
{code:xml}
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default" native="false">
<virtual-server name="default" enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
<access-log resolve-hosts="true" prefix="test" rotate="false">
<directory relative-to="jboss.server.log.dir" path="testvs/vs"/>
</access-log>
</virtual-server>
</subsystem>
{code}
access log part expected to be migrated as
{code:xml}
<access-log rotate="false" prefix="test" directory="testvs/vs" relative-to="jboss.server.log.dir" />
{code}
instead it is migrated without the {{directory}} and {{relative-to}} attributes:
<access-log rotate="false" prefix="test"/>
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
More information about the jboss-jira
mailing list