We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74fbd78 commit 9b1b706Copy full SHA for 9b1b706
crates/rover-http/src/retry.rs
@@ -122,7 +122,7 @@ mod tests {
122
123
#[fixture]
124
pub fn retry_policy() -> RetryPolicy {
125
- RetryPolicy::new(Duration::from_secs(1))
+ RetryPolicy::new(Duration::from_millis(1500))
126
}
127
128
@@ -138,6 +138,7 @@ mod tests {
138
pub async fn test_backoff(mut retry_service: HttpService) -> Result<()> {
139
let server = MockServer::start();
140
let addr = server.address().to_string();
141
+ println!("addr: {addr}");
142
let uri = format!("http://{}/", addr);
143
144
let mock = server.mock(|when, then| {
0 commit comments