Skip to content

Commit

Permalink
Do not pool HTTP connections.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Feb 22, 2017
1 parent ec5ed8e commit 3258cff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/net/resource_thread.rs
Expand Up @@ -325,7 +325,8 @@ impl CoreResourceManager {
cookie_jar: group.cookie_jar.clone(),
auth_cache: group.auth_cache.clone(),
blocked_content: BLOCKED_CONTENT_RULES.clone(),
connector_pool: group.connector.clone(),
// FIXME(#15694): use group.connector.clone() instead.
connector_pool: create_http_connector("certs"),
};
let ua = self.user_agent.clone();
let dc = self.devtools_chan.clone();
Expand Down

0 comments on commit 3258cff

Please sign in to comment.