Closed
Bug 1056769
Opened 10 years ago
Closed 10 years ago
Intermittent browser_UITour2.js FATAL ERROR: Non-local network connections are disabled and a connection attempt to support.mozilla.org (63.245.217.50) was made. [@ nsSocketTransport::InitiateSocket()]
Categories
(Firefox :: General, defect)
Tracking
()
Tracking | Status | |
---|---|---|
firefox32 | --- | wontfix |
firefox33 | --- | fixed |
firefox34 | --- | fixed |
firefox-esr24 | --- | unaffected |
firefox-esr31 | --- | fixed |
People
(Reporter: emorley, Assigned: Unfocused)
References
Details
(Keywords: intermittent-failure)
Attachments
(1 file)
896 bytes,
patch
|
MattN
:
review+
|
Details | Diff | Splinter Review |
WINNT 6.2 b2g-inbound pgo test mochitest-browser-chrome-2 on 2014-08-20 20:27:48 PDT for push e0f2dedf4376
slave: t-w864-ix-077
https://tbpl.mozilla.org/php/getParsedLog.php?id=46427817&tree=B2g-Inbound
{
20:35:54 INFO - 123 INFO Starting test_menu
20:35:54 INFO - 124 INFO TEST-PASS | chrome://mochitests/content/browser/browser/modules/test/browser_UITour2.js | Menu should initially be closed
20:35:54 INFO - 125 INFO TEST-PASS | chrome://mochitests/content/browser/browser/modules/test/browser_UITour2.js | Menu should be shown after showMenu()
20:35:54 INFO - 126 INFO TEST-PASS | chrome://mochitests/content/browser/browser/modules/test/browser_UITour2.js | Menu should be closed after hideMenu()
20:35:54 WARNING - TEST-UNEXPECTED-FAIL | chrome://mochitests/content/browser/browser/modules/test/browser_UITour2.js | application terminated with exit code 2147483651
...
20:35:51 INFO - 61 INFO FATAL ERROR: Non-local network connections are disabled and a connection attempt to support.mozilla.org (63.245.217.50) was made.
20:35:51 INFO - 62 INFO You should only access hostnames available via the test networking proxy (if running mochitests) or from a test-specific httpd.js server (if running xpcshell tests). Browser services should be disabled or redirected to a local server.
}
Reporter | ||
Comment 1•10 years ago
|
||
http://mxr.mozilla.org/mozilla-central/search?string=support.mozilla.org
http://mxr.mozilla.org/mozilla-central/source/browser/app/profile/firefox.js#256
line 256 -- pref("browser.uitour.pinnedTabUrl", "https://support.mozilla.org/%LOCALE%/kb/pinned-tabs-keep-favorite-websites-open");
line 258 -- pref("browser.uitour.whitelist.add.260", "www.mozilla.org,support.mozilla.org");
line 262 -- pref("browser.customizemode.tip0.learnMoreUrl", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/customize");
line 1140 -- pref("app.support.baseURL", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/");
http://mxr.mozilla.org/mozilla-central/source/browser/modules/UITour.jsm#779
773 ensurePinnedTab: function(aWindow, aSticky = false) {
774 let tabInfo = this.pinnedTabs.get(aWindow);
775
776 if (tabInfo) {
777 tabInfo.sticky = tabInfo.sticky || aSticky;
778 } else {
779 let url = Services.urlFormatter.formatURLPref("browser.uitour.pinnedTabUrl");
780
781 let tab = aWindow.gBrowser.addTab(url);
782 aWindow.gBrowser.pinTab(tab);
783 tab.addEventListener("TabClose", () => {
784 this.pinnedTabs.delete(aWindow);
785 });
786
787 tabInfo = {
788 tab: tab,
789 sticky: aSticky
790 };
791 this.pinnedTabs.set(aWindow, tabInfo);
792 }
793
794 return tabInfo.tab;
795 },
Blocks: 995417
Flags: needinfo?(bmcbride)
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Assignee | ||
Comment 8•10 years ago
|
||
*facepalm*
Marco: I better take this now.
Assignee: nobody → bmcbride
Status: NEW → ASSIGNED
Flags: qe-verify-
Flags: needinfo?(mmucci)
Flags: needinfo?(bmcbride)
Flags: firefox-backlog+
Assignee | ||
Updated•10 years ago
|
Points: --- → 2
Updated•10 years ago
|
Iteration: --- → 34.3
Flags: needinfo?(mmucci)
Assignee | ||
Comment 9•10 years ago
|
||
Attachment #8478890 -
Flags: review?(MattN+bmo)
Updated•10 years ago
|
Attachment #8478890 -
Flags: review?(MattN+bmo) → review+
Assignee | ||
Comment 10•10 years ago
|
||
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment 12•10 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 34
Comment 13•10 years ago
|
||
https://hg.mozilla.org/releases/mozilla-aurora/rev/8cfc1d88c42c
https://hg.mozilla.org/releases/mozilla-esr31/rev/98aa16278ceb
status-firefox32:
--- → wontfix
status-firefox33:
--- → fixed
status-firefox34:
--- → fixed
status-firefox-esr24:
--- → unaffected
status-firefox-esr31:
--- → fixed
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
You need to log in
before you can comment on or make changes to this bug.
Description
•