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

[PR] Fix session tree hierarchy for split element #33

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ public enum ChainElementType {
SPLIT_ELEMENT_2("split-element-2"),
CHAIN_TRIGGER("chain-trigger"),
CHAIN_TRIGGER_2("chain-trigger-2"),
CONDITION("condition"),
IF("if"),
SPLIT_ASYNC_2("split-async-2"),
ASYNC_SPLIT_ELEMENT_2("async-split-element-2"),
FINALLY_2("finally-2"),
UNKNOWN("");
// add more elements as needed

Expand Down Expand Up @@ -96,7 +101,8 @@ public enum ChainElementType {
private static final Set<ChainElementType> WRAPPED_IN_STEP_ELEMENTS = Collections.unmodifiableSet(
EnumSet.of(
CIRCUIT_BREAKER_2, CIRCUIT_BREAKER_MAIN_ELEMENT_2, CIRCUIT_BREAKER_FALLBACK_2, LOOP_2, SPLIT_2,
MAIN_SPLIT_ELEMENT_2, SPLIT_ELEMENT_2
MAIN_SPLIT_ELEMENT_2, SPLIT_ELEMENT_2, CONDITION, IF, TRY_2, TRY_CATCH_FINALLY_2, FINALLY_2,
SPLIT_ASYNC_2, ASYNC_SPLIT_ELEMENT_2
)
);

Expand Down
Loading