Disable connection pooling, as it seems to break stuff

pull/902/head
Tom Parker-Shemilt 4 years ago
parent 25084b928a
commit c680c63f8a

@ -111,6 +111,7 @@ lazy_static! {
.danger_accept_invalid_certs(true) // because some certs are out of date
.user_agent("Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0") // so some sites (e.g. sciter.com) don't reject us
.redirect(Policy::none())
.max_idle_per_host(0)
.timeout(time::Duration::from_secs(20))
.build().unwrap();

Loading…
Cancel
Save