Skip to content

Commit 15ec566

Browse files
authored
unmask deserialization error in getNextPage history (#1019)
1 parent f2bac82 commit 15ec566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/internal_task_pollers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ func newGetHistoryPageFunc(
779779
var err1 error
780780
h, err1 = serializer.DeserializeBlobDataToHistoryEvents(resp.RawHistory, s.HistoryEventFilterTypeAllEvent)
781781
if err1 != nil {
782-
return nil, nil, nil
782+
return nil, nil, err1
783783
}
784784
} else {
785785
h = resp.History

0 commit comments

Comments
 (0)