diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c97ee31d5..fecccb3d28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,10 @@ * Add uptake telemetry support ([#7288](https://github.com/mozilla/application-services/pull/7288)) * Add v2 routes ([#7339](https://github.com/mozilla/application-services/pull/7339)) +## ✨ What's Changed ✨ + +- Viaduct has a default timeout of 60 seconds on all platforms (was previously 10 seconds on Android, 7 seconds on iOS) + [Full Changelog](https://github.com/mozilla/application-services/compare/v151.0...v152.0) # v151.0 (_2026-04-20_) diff --git a/components/viaduct/src/client.rs b/components/viaduct/src/client.rs index 7ad970493d..5b40ddf1d2 100644 --- a/components/viaduct/src/client.rs +++ b/components/viaduct/src/client.rs @@ -106,10 +106,7 @@ impl ClientSettings { impl Default for ClientSettings { fn default() -> Self { Self { - #[cfg(target_os = "ios")] - timeout: 7000, - #[cfg(not(target_os = "ios"))] - timeout: 10000, + timeout: 60000, redirect_limit: 10, user_agent: None, #[cfg(feature = "ohttp")]