Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
211010717
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
211010717
Commits
7ce31c65
Unverified
Commit
7ce31c65
authored
4 years ago
by
WangLiang/王良
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
saga/seata-saga-engine/src/main/java/io/seata/saga/engine/pcext/handlers/CompensationTriggerStateHandler.java
+2
-4
2 additions, 4 deletions
...ngine/pcext/handlers/CompensationTriggerStateHandler.java
with
2 additions
and
4 deletions
saga/seata-saga-engine/src/main/java/io/seata/saga/engine/pcext/handlers/CompensationTriggerStateHandler.java
+
2
−
4
View file @
7ce31c65
...
...
@@ -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
());
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment