This is an automated email from the ASF dual-hosted git repository.
surajk 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 55119ef Fixed: Incorrect value in entity-auto invoke for removeProductFeatureDataResource. (OFBIZ-11614)
55119ef is described below
commit 55119ef5f56a4b5bea4310ca08cfd88533170efe
Author: Suraj Khurana <
[hidden email]>
AuthorDate: Thu Apr 30 17:03:30 2020 +0530
Fixed: Incorrect value in entity-auto invoke for removeProductFeatureDataResource.
(OFBIZ-11614)
It was may be a typo introduced in rev 1728261, fifty months ago.
---
applications/product/servicedef/services.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/applications/product/servicedef/services.xml b/applications/product/servicedef/services.xml
index 483c0ad..df47fda 100644
--- a/applications/product/servicedef/services.xml
+++ b/applications/product/servicedef/services.xml
@@ -1014,7 +1014,7 @@ under the License.
<description>Create ProductFeature-DataResource</description>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>
- <service name="removeProductFeatureDataResource" default-entity-name="ProductFeatureDataResource" engine="entity-auto" invoke="remove" auth="true">
+ <service name="removeProductFeatureDataResource" default-entity-name="ProductFeatureDataResource" engine="entity-auto" invoke="delete" auth="true">
<description>Remove ProductFeature-DataResource</description>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>