Skip to content

Commit 4af80cc

Browse files
committed
don't force garbage collection in httpd.js for firefox when connections are closed
1 parent 51d4486 commit 4af80cc

File tree

1 file changed

+1
-1
lines changed
  • javascript/firefox-driver/extension/components

1 file changed

+1
-1
lines changed

javascript/firefox-driver/extension/components/httpd.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ nsHttpServer.prototype =
836836
// Bug 508125: Add a GC here else we'll use gigabytes of memory running
837837
// mochitests. We can't rely on xpcshell doing an automated GC, as that
838838
// would interfere with testing GC stuff...
839-
Components.utils.forceGC();
839+
gc()
840840
},
841841

842842
/**

0 commit comments

Comments
 (0)