Do not ignore case (i.e. switch property names to lower case) for db properties.
This commit is contained in:
parent
3b539848c0
commit
eafca524bc
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ public final class Application implements IPathElement, Runnable {
|
||||||
eventLogName = props.getProperty("eventLog", "helma."+name+".event");
|
eventLogName = props.getProperty("eventLog", "helma."+name+".event");
|
||||||
|
|
||||||
// create app-level db sources
|
// create app-level db sources
|
||||||
dbProps = new ResourceProperties(this, "db.properties", sysDbProps);
|
dbProps = new ResourceProperties(this, "db.properties", sysDbProps, false);
|
||||||
|
|
||||||
// the passwd file, to be used with the authenticate() function
|
// the passwd file, to be used with the authenticate() function
|
||||||
CryptResource parentpwfile = null;
|
CryptResource parentpwfile = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue