Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(631)

Unified Diff: net/data/websocket/multiple-connections.html

Issue 1318973002: Update WebSocketBrowserTest.SSLConnectionLimit test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove comment about needing to update the limit Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/data/websocket/multiple-connections.html
diff --git a/net/data/websocket/multiple-connections.html b/net/data/websocket/multiple-connections.html
index 0fe9e973347479f8d211352408a1f0468da24efa..076cc3dc084870ef5506a68c6ad068575c99e744 100644
--- a/net/data/websocket/multiple-connections.html
+++ b/net/data/websocket/multiple-connections.html
@@ -3,11 +3,7 @@
var protocol = location.protocol.replace('http', 'ws');
var url = protocol + '//' + location.host + '/echo-with-no-extension';
-// TODO(ricea): The limit for ws: is 255, but wss: gets a limit of 30
-// (per-host:port, not ip:port!) because it still uses the HTTP pool code. This
-// should be fixed at some point. When it is, change this number back to 50 (or
-// even larger, if it works).
-const SOCKETS_TO_OPEN = 30;
+const SOCKETS_TO_OPEN = 255;
// PARALLELISM limits the number of connections we try to open simultaneously.
// This avoids triggering the throttling added in http://crrev.com/972963002,
@@ -43,5 +39,5 @@ for (var i = 0; i < PARALLELISM; ++i) {
setTimeout(function() {
console.log("Got stuck after " + connected + " socket(s) connected");
document.title = "FAIL";
-}, 5000);
+}, 11000);
</script>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698