Skip to content

Commit

Permalink
Merge pull request payara#6074 from JamesHillyard/FISH-6066
Browse files Browse the repository at this point in the history
FISH-6066 Invalid property 'default-web-xml' on instance start-up
  • Loading branch information
Pandrex247 authored Nov 28, 2022
2 parents 7ce7ad7 + 263ead4 commit 30222cf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2016-2020] [Payara Foundation and/or its affiliates]
// Portions Copyright [2016-2022] [Payara Foundation and/or its affiliates]

package com.sun.enterprise.web;

Expand Down Expand Up @@ -1548,6 +1548,8 @@ private void configureProperty(
setUseMyFaces(ConfigBeansUtilities.toBoolean(value));
} else if("default-role-mapping".equalsIgnoreCase(name)) {
wmInfo.getDescriptor().setDefaultGroupPrincipalMapping(ConfigBeansUtilities.toBoolean(value));
} else if("default-web-xml".equalsIgnoreCase(name)) {
vs.setDefaultWebXmlLocation(value);
} else if(name.startsWith("alternatedocroot_")) {
parseAlternateDocBase(name, value);
} else if(name.startsWith("valve_") ||
Expand Down

0 comments on commit 30222cf

Please sign in to comment.