This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/isis.git
commit cd0b38bedda781e688c9f13b6f25d939ac75254c Author: Dan Haywood <[email protected]> AuthorDate: Thu Aug 25 17:11:32 2022 +0100 ISIS-3177: fixes defaults is all. --- .../java/org/apache/isis/core/config/EclipselinkConfiguration.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/config/src/main/java/org/apache/isis/core/config/EclipselinkConfiguration.java b/core/config/src/main/java/org/apache/isis/core/config/EclipselinkConfiguration.java index 46385e8259..f02bb4b717 100644 --- a/core/config/src/main/java/org/apache/isis/core/config/EclipselinkConfiguration.java +++ b/core/config/src/main/java/org/apache/isis/core/config/EclipselinkConfiguration.java @@ -56,17 +56,17 @@ public class EclipselinkConfiguration { /** * @see <a href="https://www.eclipse.org/eclipselink/documentation/2.7/jpa/extensions/persistenceproperties_ref.htm#CHDDIFGE">eclipse.weaving.fetchgroups</a> docs */ - private boolean fetchgroups = false; + private boolean fetchgroups = true; /** * @see <a href="https://www.eclipse.org/eclipselink/documentation/2.7/jpa/extensions/persistenceproperties_ref.htm#BABJICDJ">eclipse.weaving.internal</a> docs */ - private boolean internal = false; + private boolean internal = true; /** * @see <a href="https://www.eclipse.org/eclipselink/documentation/2.7/jpa/extensions/persistenceproperties_ref.htm#BABDBIFE">eclipse.weaving.lazy</a> docs */ - private boolean lazy = false; + private boolean lazy = true; } /**
