728
ctx context.Context,
729
request *ReadHistoryBranchRequest,
730
>
) ([]*commonpb.DataBlob, []int64, []int64, *historyPagingToken, int, error) {
history_manager.go
731
>
732
>
shardID := request.ShardID
733
>
branchToken := request.BranchToken
734
>
minNodeID := request.MinEventID
735
>
maxNodeID := request.MaxEventID
736
>
737
>
branch, err := m.GetHistoryBranchUtil().ParseHistoryBranchInfo(branchToken)
738
>
if err != nil {
739
return nil, nil, nil, nil, 0, serviceerror.NewInvalidArgument(fmt.Sprintf("unable to parse branch token: %v", err))
740
}