Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
5 changes: 1 addition & 4 deletions components/viaduct/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down