Skip to content
Snippets Groups Projects
Unverified Commit 7ce31c65 authored by WangLiang/王良's avatar WangLiang/王良 Committed by GitHub
Browse files

bugfix: fix throw NPE when get the state list (#2949)

* bugfix: fix throw NPE when get the state list
parent 3e50fe50
No related branches found
No related tags found
No related merge requests found
......@@ -48,10 +48,8 @@ public class CompensationTriggerStateHandler implements StateHandler {
DomainConstants.VAR_NAME_STATEMACHINE_INST);
StateMachineConfig stateMachineConfig = (StateMachineConfig)context.getVariable(
DomainConstants.VAR_NAME_STATEMACHINE_CONFIG);
List<StateInstance> stateInstanceList = null;
if (stateMachineInstance != null) {
stateInstanceList = stateMachineInstance.getStateList();
} else if (stateMachineConfig.getStateLogStore() != null) {
List<StateInstance> stateInstanceList = stateMachineInstance.getStateList();
if (CollectionUtils.isEmpty(stateInstanceList)) {
stateInstanceList = stateMachineConfig.getStateLogStore().queryStateInstanceListByMachineInstanceId(
stateMachineInstance.getId());
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment