Github user upthewaterspout commented on the issue: https://github.com/apache/geode/pull/538 @boglesby - I see the problem with lucene:indexxx. It looks like in cache-1.0.xsd, which specify this in order to allow other schemas (like lucene.xsd) to extend region with additional elements: ` <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> ` Unfortunately, using 'lax' instead of 'strict' here means that we don't validate the new xsd as strictly - additional elements are ignored, etc. I'm worried about the impact of changing this validation. I think the thing to do maybe is just to give a little better error message in our java code and call it a day.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---