This is an automated email from the ASF dual-hosted git repository.
deepak pushed a commit to branch release18.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release18.12 by this push:
new 4d689bd Fixed: Corrected property name as defined in general.properties (OFBIZ-10008)
4d689bd is described below
commit 4d689bdfb439170fa4460c21273bb4e6c90318f7
Author: Deepak Dixit <
[hidden email]>
AuthorDate: Wed Feb 17 12:49:30 2021 +0530
Fixed: Corrected property name as defined in general.properties
(OFBIZ-10008)
---
.../entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java b/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
index 87ba91b..af7a22c 100644
--- a/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
+++ b/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
@@ -102,7 +102,7 @@ public class GenericDelegator implements Delegator {
/** This flag is only here for lower level technical testing, it shouldn't be user configurable (or at least I don't think so yet); when true all operations without a transaction will be wrapped in one; seems to be necessary for some (all?) XA aware connection pools, and should improve overall stability and consistency */
public static final boolean alwaysUseTransaction = true;
// TODO should this is be handled by tenant?
- public static final boolean saveEntitySyncRemoveInfo = UtilProperties.getPropertyAsBoolean("general", "saveEntitySyncRemove", false);
+ public static final boolean saveEntitySyncRemoveInfo = UtilProperties.getPropertyAsBoolean("general", "saveEntitySyncRemoveInfo", false);
protected String delegatorBaseName = null;
protected String delegatorFullName = null;