553
// operation if the response body is too large.
554
return handleNonRetryableStartOperationError(node, operation, callErr)
555
>
case errors.Is(callErr, ErrInvalidOperationToken):
executors.go
556
>
// Following practices from workflow task completion payload size limit enforcement, we do not retry this
557
>
// operation if the response's operation token is too large.
558
>
return handleNonRetryableStartOperationError(node, operation, callErr)
559
case errors.As(callErr, &opTimeoutBelowMinErr):
560
// Not enough time to execute another request, resolve the operation with a timeout.