Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.67.x-blue] [incubator-kie-issues-646] Duplicate timer created for Task SLA Due date with AsyncMode env setting #2353

Merged
merged 2 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -56,7 +56,7 @@ public long getId() {

@Override
public Object getMetaData(String name) {
return ((NodeImpl)node).getMetaData(name);
return getMetaData().get(name);
}

@Override
Expand Down
Expand Up @@ -95,6 +95,11 @@ public void setEventType(String eventType) {
this.eventType = eventType;
}

@Override
protected void configureSla() {
// an async event node cannot have an sla event
}

@Override
public Node getNode() {
return new AsyncEventNode(super.getNode());
Expand Down