Open
Bug 1514916
Opened 5 years ago
Updated 1 year ago
Decide what to do with currently-failing console monitoring tests in parent-intercept mode
Categories
(Core :: DOM: Service Workers, enhancement, P3)
Core
DOM: Service Workers
Tracking
()
NEW
Tracking | Status | |
---|---|---|
firefox66 | --- | affected |
People
(Reporter: mrbkap, Unassigned)
References
(Blocks 1 open bug)
Details
See [1] for an example of this failing. The problem is that the mochitest (in this case test_error_reporting.html runs in a content process and we've moved the service worker into the parent process. Therefore, the console listener (which listens in the content process) doesn't see the console messages being logged in the parent process and we fail the test. One thing that could just fix this magically would be Perry's work to move the service workers back down into the content process. I believe that, by default, we'll be using the caller process by default, so the test will live in the same process as the service worker. However, if we ever decide to change that strategy (or one day move to a dedicated service worker process), this will break again. One option would be to create a console listener that listens in all processes (i.e. when it's created, it would add listeners in all processes that would send all console messages up to a listener in the parent). What do people think? [1] https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=216719887&repo=try&lineNumber=10959
Updated•5 years ago
|
Priority: -- → P3
Reporter | ||
Comment 1•5 years ago
|
||
I spoke with asuth this morning and we decided that it's probably good enough to let Perry's patch push the service worker down into the originating process, so we don't need to do anything in the short term.
Updated•4 years ago
|
Updated•1 year ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•