(url: String)
| 471 | } |
| 472 | |
| 473 | fn upload_data_for(url: String) -> UploadData { |
| 474 | UploadData { |
| 475 | status: "success".to_string(), |
| 476 | upload_url: url, |
| 477 | run_id: "test-run".to_string(), |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | /// On-disk archives stream through `send_streamed_with_retry`, which retries |
| 482 | /// transient failures itself since `STREAMING_CLIENT` has no retry middleware. |
no outgoing calls
no test coverage detected