We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment:
[email protected] [email protected]
Using const promise = cluster.execute(url), there doesn't seem to be a way to retrieve the initial url in promise.catch(e).
const promise = cluster.execute(url)
url
promise.catch(e)
E.g., on timeouts, e will be a plain Error instance with message Timeout hit: ${millis}.
e
Error
message
Timeout hit: ${millis}
It would be helpful to retrieve the original url (... or is there some other means to do so?).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment:
Using
const promise = cluster.execute(url)
, there doesn't seem to be a way to retrieve the initialurl
inpromise.catch(e)
.E.g., on timeouts,
e
will be a plainError
instance withmessage
Timeout hit: ${millis}
.It would be helpful to retrieve the original
url
(... or is there some other means to do so?).The text was updated successfully, but these errors were encountered: