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
Is your feature request related to a problem? Please describe.
Currently, when Zebra encounters a timeout, it debug-prints the Elapsed error, which displays the text:
Elapsed
... Elapsed() ...
But these errors would be a lot more readable if they were displayed as:
... timeout elapsed ...
Describe the solution you'd like
We should print tokio::Timeout's Elapsed errors as timeout elapsed.
tokio::Timeout
timeout elapsed
But I don't know how to do that easily - maybe we need a wrapper around the Timeout future to modify its error display and debug impls?
Timeout
We'll also need to make sure there isn't any code that specifically checks for the Elapsed error, or the string Elapsed.
Describe alternatives you've considered
Do nothing.
Explain what Elapsed means in Zebra's documentation.
Related Issues
Noted in #1535, but it's been an issue for a while.
The text was updated successfully, but these errors were encountered:
Would be nice, but we've never actually needed this.
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Currently, when Zebra encounters a timeout, it debug-prints the
Elapsed
error, which displays the text:But these errors would be a lot more readable if they were displayed as:
Describe the solution you'd like
We should print
tokio::Timeout
'sElapsed
errors astimeout elapsed
.But I don't know how to do that easily - maybe we need a wrapper around the
Timeout
future to modify its error display and debug impls?We'll also need to make sure there isn't any code that specifically checks for the
Elapsed
error, or the stringElapsed
.Describe alternatives you've considered
Do nothing.
Explain what
Elapsed
means in Zebra's documentation.Related Issues
Noted in #1535, but it's been an issue for a while.
The text was updated successfully, but these errors were encountered: