turn off lazy loading in the datasources section of the directory tree to stop OOMEs

This commit is contained in:
millmanorama 2017-03-10 16:10:05 +01:00
parent d3af39c0fc
commit 6aa1d2d4b8

View File

@ -51,7 +51,7 @@ abstract class AbstractContentChildren<T> extends Keys<T> {
* Uses lazy Content.Keys
*/
AbstractContentChildren() {
super(true); // use lazy behavior
super(false); //don't use lazy behavior
}
@Override