You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by jk...@apache.org on 2021/03/26 15:02:18 UTC

[unomi] branch unomi-1.5.x updated: UNOMI-450 : deprecate AllEventToProfilePropertiesAction to use CopyPropertiesAction (#270)

This is an automated email from the ASF dual-hosted git repository.

jkevan pushed a commit to branch unomi-1.5.x
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/unomi-1.5.x by this push:
     new c76f61a  UNOMI-450 : deprecate AllEventToProfilePropertiesAction to use CopyPropertiesAction (#270)
c76f61a is described below

commit c76f61aa7a252e8a64191b3f5ac93a650e63fa73
Author: jsinovassin <58...@users.noreply.github.com>
AuthorDate: Fri Mar 26 15:47:36 2021 +0100

    UNOMI-450 : deprecate AllEventToProfilePropertiesAction to use CopyPropertiesAction (#270)
---
 itests/src/test/resources/testLogin.json                             | 5 ++++-
 .../src/main/resources/META-INF/cxs/rules/exampleLogin.json          | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/itests/src/test/resources/testLogin.json b/itests/src/test/resources/testLogin.json
index fce5a3d..556b32c 100644
--- a/itests/src/test/resources/testLogin.json
+++ b/itests/src/test/resources/testLogin.json
@@ -28,7 +28,10 @@
     {
       "parameterValues": {
       },
-      "type": "allEventToProfilePropertiesAction"
+      "type": "copyPropertiesAction",
+      "parameterValues": {
+        "singleValueStrategy": "alwaysSet"
+      }
     }
   ]
 }
diff --git a/samples/login-integration/src/main/resources/META-INF/cxs/rules/exampleLogin.json b/samples/login-integration/src/main/resources/META-INF/cxs/rules/exampleLogin.json
index acdbdaa..5691f47 100644
--- a/samples/login-integration/src/main/resources/META-INF/cxs/rules/exampleLogin.json
+++ b/samples/login-integration/src/main/resources/META-INF/cxs/rules/exampleLogin.json
@@ -29,7 +29,7 @@
     {
       "parameterValues": {
       },
-      "type": "allEventToProfilePropertiesAction"
+      "type": "copyPropertiesAction"
     }
   ]
-}
\ No newline at end of file
+}