We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8377918 commit 6c123b5Copy full SHA for 6c123b5
src/main/java/com/ericsson/ei/waitlist/WaitListWorker.java
@@ -64,6 +64,7 @@ public void run() {
64
String event = dbObject.get("Event").toString();
65
rulesObject = rulesHandler.getRulesForEvent(event);
66
String idRule = rulesObject.getIdentifyRules();
67
+ if (idRule != null && !idRule.isEmpty()) {
68
JsonNode ids = jmesPathInterface.runRuleOnEvent(idRule, event);
69
if (ids.isArray()) {
70
for (final JsonNode idJsonObj : ids) {
@@ -74,6 +75,7 @@ public void run() {
74
75
}
76
77
78
+ }
79
80
81
0 commit comments