Skip to content

Commit e5a4005

Browse files
committed
Fix nil pointer issue
1 parent eb20e12 commit e5a4005

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/uber/cadence/internal/common/WorkflowExecutionUtils.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,8 @@ private static HistoryEvent getInstanceCloseEvent(
226226

227227
pageToken = response.getNextPageToken();
228228
History history = response.getHistory();
229-
if (history != null && history.getEvents().size() > 0) {
229+
230+
if (history != null && history.getEvents() != null && history.getEvents().size() > 0) {
230231
event = history.getEvents().get(0);
231232
if (!isWorkflowExecutionCompletedEvent(event)) {
232233
throw new RuntimeException("Last history event is not completion event: " + event);

0 commit comments

Comments
 (0)