Closed golmansax closed 6 years ago
I'm seeing an unnecessary error thrown because react-relay is chaining a .catch((err) => setTimeout(() => throw err)) onto sendQueries.
react-relay
.catch((err) => setTimeout(() => throw err))
sendQueries
Does this package need to throw an error after catching it and calling relayRequest.reject(err)? I saw it was changed in the following commit: https://github.com/relay-tools/react-relay-network-layer/commit/1c0f91b371dc3a1dcea6b3b52e73889455532ad5#diff-9636d8a952e59a775d9229f4e5d9680fR30.
relayRequest.reject(err)
Thanks a lot! 👍
Thanks for reviewing!
I'm seeing an unnecessary error thrown because
react-relay
is chaining a.catch((err) => setTimeout(() => throw err))
ontosendQueries
.Does this package need to throw an error after catching it and calling
relayRequest.reject(err)
? I saw it was changed in the following commit: https://github.com/relay-tools/react-relay-network-layer/commit/1c0f91b371dc3a1dcea6b3b52e73889455532ad5#diff-9636d8a952e59a775d9229f4e5d9680fR30.