Compare commits

...

1 Commits

Author SHA1 Message Date
Arseny Sher
bb45db3982 Increase neon_local http client to compute timeout in reconfigure.
Seems like 30s sometimes not enough when CI runners are overloaded,
causing pull_timeline flakiness.

ref https://github.com/neondatabase/neon/issues/9731#issuecomment-2532143008
2024-12-11 14:10:37 +01:00

View File

@@ -810,7 +810,7 @@ impl Endpoint {
}
let client = reqwest::Client::builder()
.timeout(Duration::from_secs(30))
.timeout(Duration::from_secs(120))
.build()
.unwrap();
let response = client