Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Arti
Commits
93643985
Commit
93643985
authored
3 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
chanmgr: implement HasRetryTime.
parent
f7810d42
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!443
Improved handling for retriable errors in circmgr
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crates/tor-chanmgr/src/err.rs
+31
-0
31 additions, 0 deletions
crates/tor-chanmgr/src/err.rs
with
31 additions
and
0 deletions
crates/tor-chanmgr/src/err.rs
+
31
−
0
View file @
93643985
...
...
@@ -92,6 +92,37 @@ impl tor_error::HasKind for Error {
}
}
impl
tor_error
::
HasRetryTime
for
Error
{
fn
retry_time
(
&
self
)
->
tor_error
::
RetryTime
{
use
tor_error
::
RetryTime
as
RT
;
use
Error
as
E
;
match
self
{
// We can retry this action immediately; there was already a time delay.
E
::
ChanTimeout
=>
RT
::
Immediate
,
// These are worth retrying in a little while.
//
// TODO: Someday we might want to distinguish among different kinds of IO
// errors.
E
::
PendingFailed
|
E
::
Proto
(
_
)
|
E
::
Io
{
..
}
=>
RT
::
AfterWaiting
,
// This error reflects multiple attempts, but every failure is an IO
// error, so we can also retry this after a delay.
//
// TODO: Someday we might want to distinguish among different kinds
// of IO errors.
E
::
ChannelBuild
{
..
}
=>
RT
::
AfterWaiting
,
// This one can't succeed: if the ChanTarget have addresses to begin with,
// it won't have addresses in the future.
E
::
UnusableTarget
(
_
)
=>
RT
::
Never
,
// These aren't recoverable at all.
E
::
Spawn
{
..
}
|
E
::
Internal
(
_
)
=>
RT
::
Never
,
}
}
}
impl
Error
{
/// Construct a new `Error` from a `SpawnError`.
pub
(
crate
)
fn
from_spawn
(
spawning
:
&
'static
str
,
err
:
SpawnError
)
->
Error
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment