Remove the requirement for a namespace ending in "/individual/" - print a warning, but go on.
This commit is contained in:
parent
1403274f72
commit
34799b02ed
1 changed files with 3 additions and 3 deletions
|
@ -97,8 +97,8 @@ public class FileStorageSetup implements ServletContextListener {
|
||||||
String defaultSuffix = "/individual/";
|
String defaultSuffix = "/individual/";
|
||||||
|
|
||||||
if (!defaultNamespace.endsWith(defaultSuffix)) {
|
if (!defaultNamespace.endsWith(defaultSuffix)) {
|
||||||
throw new IllegalArgumentException(
|
log.warn("Default namespace does not match the expected form "
|
||||||
"Default namespace does not match the expected form: '"
|
+ "(does not end with '" + defaultSuffix + "'): '"
|
||||||
+ defaultNamespace + "'");
|
+ defaultNamespace + "'");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue