We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d01f60 commit 2d500c6Copy full SHA for 2d500c6
crates/interledger-settlement/src/api/message_service.rs
@@ -72,9 +72,9 @@ where
72
.send()
73
.compat() // Wrap to a 0.1 future
74
};
75
- // TODO: futures-retry is still not on futures 0.3. As a result, we wrap our action in a
76
- // 0.1 future, and then wrap the Retry future in a 0.3 future to use async/await.
77
+ // TODO: tokio-retry is still not on futures 0.3. As a result, we wrap our action in a
+ // 0.1 future, and then wrap the Retry future in a 0.3 future to use async/await.
78
let response = Retry::spawn(ExponentialBackoff::from_millis(10).take(10), action)
79
.compat()
80
.map_err(move |error| {
0 commit comments